I know that in Objective-C, I can encrypt using AES128 through my own libraries (CommonCrypter.h). In Java, I encrypt using AES128 ISO-8859-1 in CFB mode. In Objective-C, encoding is done through NSISOLATIN1STRINGENCODING, but there is no problem in the equivalent CFB mode. Only available modes are available: EBC padding, KCCOPTIONECBMODE and KCCOPTIONPKCS7PADDING.
I need to encrypt using AES128 with CFB mode. Does anyone have an idea about this? Thanks for the ton in advance.
source share