AESCrypt-ObjC
AESCrypt-ObjC copied to clipboard
Can't found encrypt and decrypt functions using bridging header.
I got problem with this library where I can't found any encrypt and decrypt functions using bridging header.
My code
let instanceAESCrypt = AESCrypt()
They are class methods you don't have to instantiate them. Look at this example:
let encryptedData:String = AESCrypt.encrypt("stringToEncrypt", password: "myPassword");
That works fine for me.