Explorar o código

Add comment about used algorithm

Marcin Krzyzanowski %!s(int64=9) %!d(string=hai) anos
pai
achega
0461202e01
Modificáronse 1 ficheiros con 3 adicións e 1 borrados
  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)
     }
-}
+}