我正在尝试将加密字符串从一台设备发送到另一台设备。第一个(使用 Swift)使用 RNCryptor 加密字符串并将其发送(作为字符串)。如何使用 RNCryptor 在 Python 中解密这个加密字符串?
我尝试使用 RNCryptor 提供的正常解密方法对加密字符串进行解密,但它说该字符串是“坏数据”。
cryptor = rncryptor.RNCryptor()
decrypted_data = cryptor.decrypt(code.data, password)
# -> ERROR: bad data (code.data is a string)