我的应用程序从GET请求接收加密的数据。我在解密数据时遇到问题。我正在使用跨平台的CryptLib库CryptLib。遵循了CryptLib.m中的文档,但似乎没有任何效果。如果有人对CryptLib有所了解,将非常感谢您提供一些指导,请参阅下面的代码。
代码
[[[NSURLSession sharedSession] dataTaskWithRequest:request completionHandler:
^(NSData * _Nullable encryptedData,
NSURLResponse * _Nullable response,
NSError * _Nullable error) {
//has data
NSString *jsonData = [[NSString alloc] initWithData:encryptedData encoding:NSUTF8StringEncoding];
NSLog(@"Data received: %@", jsonData);
NSString *key = @"3HS5UtP7hEc5Jsqg7P4KDQEH2y95v92Z";
NSString *iv = @"ZkjH27Rh63RQtH8y";
//Decrypted data is NULL!
encryptedData = [[StringEncryption alloc] decrypt:encryptedData key:key iv:iv];
NSString * decryptedText = [[NSString alloc] initWithData:encryptedData encoding:NSUTF8StringEncoding];
NSLog(@"decrypted data:: %@", decryptedText); //print the decrypted text
}] resume];