AESCrypt-ObjC
AESCrypt-ObjC copied to clipboard
AES algorithm
re:
https://github.com/Gurpartap/AESCrypt-ObjC/blob/master/NSData%2BCommonCrypto.m#L177
The method name says AES256, but the algorithm identifier uses AES-128. The key being passed in is also the output from SHA-256, so it's a 256-bit key.
Mismatches?
+1 this confused me also (trying to implement Android version)
i got this type of error :- Invalid length for a Base-64 char array.
It's the same algorithm, just depends on the key size which appears to be dynamic in this implementation. http://stackoverflow.com/a/9617238/623487