我正在开发小型应用程序,但在 python 中解密数据时遇到问题。
首先,我使用以下代码在 php 中使用 AES-256-CBC 加密字符串:
function EncryptAES($data){
global $KEY;
$ivlen = openssl_cipher_iv_length("aes-256-cbc");
$iv = openssl_random_pseudo_bytes($ivlen);
$ciphertext = openssl_encrypt($data, "aes-256-cbc", $KEY, NULL, $iv);
return $ciphertext;
}
现在 openssl_encrypt 返回 base64 字符串(因为我使用NULL作为第四个变量)
之后我尝试在 python 中解密它,但它只返回字符串的最后一部分。
这是python代码:
BS = 16
pad = lambda s: s + (BS - len(s) % BS) * chr(BS - len(s) % BS)
unpad = lambda s : s[0:-s[-1]]
class AESCipher:
def __init__( self, key ):
self.key = hashlib.sha256(key.encode('utf-8')).digest()
def decrypt( self, enc ):
enc = base64.b64decode(enc)
iv = enc[:16]
cipher = AES.new(self.key, AES.MODE_CBC, iv )
return unpad(cipher.decrypt( enc[16:] ))
def Decrypt(data):
cipher = AESCipher(KEY)
decrypted = cipher.decrypt(data).decode('UTF-8')
return decrypted
当然KEY变量与服务器上的相同。
现在,在使用加密数据运行Decrypt()函数后,它只返回解密字符串的一部分。
叮当猫咪