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

Can't found encrypt and decrypt functions using bridging header.

Open datomnurdin opened this issue 9 years ago • 1 comments

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 18 pm

datomnurdin avatar May 09 '15 05:05 datomnurdin

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.

pballart avatar Aug 15 '15 18:08 pballart