瀏覽代碼

Add comment about used algorithm

Marcin Krzyzanowski 9 年之前
父節點
當前提交
0461202e01
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      Sources/CryptoSwift/AES.swift

+ 3 - 1
Sources/CryptoSwift/AES.swift

@@ -5,6 +5,8 @@
 //  Created by Marcin Krzyzanowski on 21/11/14.
 //  Copyright (c) 2014 Marcin Krzyzanowski. All rights reserved.
 //
+//  Implementation of Gladman algorithm http://www.gladman.me.uk/AES
+//
 
 final public class AES {
     
@@ -439,4 +441,4 @@ extension AES: Cipher {
     public func cipherDecrypt(bytes: [UInt8]) throws -> [UInt8] {
         return try self.decrypt(bytes)
     }
-}
+}