BBAES
BBAES copied to clipboard
A lightweight AES Encryption Class for iOS and OS X.
Results
2
BBAES issues
Sort by
recently updated
recently updated
newest added
Hi need to encrypt this string NSString *dataString2 = @"eJDRqD_1ME0:APA91bFRfuy6Xk0GMVHtFLKjw5eZnqoGQ7wdTYjXdLGPqOVGuApv_eaZQzHQmqhqTKN70mspUt6BpZFFnCGn4j2y0Ew-eS1SnghLQZNxNAbh9LSgCjviWGe2wwCCW132jqW5E_aaxL5g"; NSData *dataIn2 = [dataString2 dataUsingEncoding:NSUTF8StringEncoding]; NSData *result2 = [BBAES encryptedDataFromData:dataIn2 IV:ivData key:symKey options:0]; // result = 16bytes NSData *hexaData2 =...