AESCrypt-ObjC icon indicating copy to clipboard operation
AESCrypt-ObjC copied to clipboard

A simple and opinionated AES encrypt / decrypt Objective-C class that just works.

Results 18 AESCrypt-ObjC issues
Sort by recently updated
recently updated
newest added

I got this error message ``` /Users/MNurdin/Documents/iOS/RevivalxSwiftAESCrypt/RevivalxSwiftAESCrypt/AESCrypt/NSString+Base64.m:28:14: Definition of 'NSData' must be imported from module 'Foundation.NSData' before it is required ``` Code ``` lentext = [data length]; ``` Please advice....

Hi Gurpratap, My app crashing for below line NSData *encryptedData = [[message dataUsingEncoding:NSUTF8StringEncoding] AES256EncryptedDataUsingKey:[[password dataUsingEncoding:NSUTF8StringEncoding] SHA256Hash] error:nil]; with exception -[NSConcreteMutableData SHA256Hash]: unrecognized selector sent to instance

Hi, Thanks for the code. It really helps and we are getting same result in iOS and Android with your code. Now we need to decrypt this code through PHP...

It crashes the app if you keep the default optimization level of Release build as the 'Fastest'. So changing from the defaults to 'None' helped solve crashes! Your code have...

it will be crash if i run my app on ios6 ,it seemed that nsdata+base64 not support , when i moidfied nsdata+base64.m ,it will be ok~

I am testing this code. The result is different from the site http://aes.online-domain-tools.com/ I appreciate if anybody can tell an advice to test the result. Thank you in advance

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?

The code work well for me. But would you like to support cocoa pods?

I got problem with this library where I can't found any encrypt and decrypt functions using bridging header. My code let instanceAESCrypt = AESCrypt() ![screen shot 2015-05-09 at 1 15...