소스 검색

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)
     }
-}
+}