解密对字符串的API响应

时间:2018-08-20 06:36:04

标签: ios swift xcode encryption rncryptor

let dd = aaa.value(forKey: "secret_key") as! String
let data = dd.data(using: .utf8)
let decryptedData = try? RNCryptor.decrypt(data: data, withPassword: password)
print(decryptedData)

我正在使用RNCryptor转换加密的数据以响应服务调用。我得到的响应是string。我如何使用RNCryptor解密字符串响应。通过使用上面的代码,我得到了nil值。

0 个答案:

没有答案