pyCrypto:输入长度必须是 16 的倍数



我正在尝试解密用"crypto-js"编码的字符串,并使用"pyCrypto"在python中对其进行解码。我已经按照各种博客上的确切步骤进行操作,但仍然是相同的错误。

我关注的最后一个堆栈溢出帖子是 "CryptoJS和Pycrypto一起工作"@Artjom B给出的答案。

还尝试了"https://chase-seibert.github.io/blog/2016/01/29/cryptojs-pycrypto-ios-aes256.html">

我的 js 代码是

var pass = CryptoJS.AES.encrypt(text, password_encrypt_key, 
{
iv: password_encrypt_iv,
})
return password_encrypt_iv.concat(pass.ciphertext).toString(CryptoJS.enc.Base64);

我的蟒蛇代码是

BLOCK_SIZE = 16
KEY = constants.PASSWORD_ENCRYPT_KEY
# IV = constants.PASSWORD_ENCRYPT_IV
IV = enc_password[:BLOCK_SIZE]
MODE = AES.MODE_CBC
enc_password = base64.b64decode(enc_password)
aes = AES.new(KEY, MODE, IV)
password = unpad(aes.decrypt(enc_password[BLOCK_SIZE:]))

解开板功能

def unpad(s):
return s[:-ord(s[-1])]

我找到了解决方案。不确定这是如何工作的,而不是解决方案的其余部分,但无论如何都要发布它。解决方案也来自以下链接 Artjom B 的回答。他给出了更好的解释。我也发布了相同的答案。

链接 - 如何在Python中从JavaScript CryptoJS.AES.encrypt(password,passphrase(解密密码

Javascript -

var KEY = encrypt_key;
var encrypted_txt_obj = CryptoJS.AES.encrypt(text, KEY);
return encrypted_txt_obj.toString();

蟒-

from Crypto.Cipher import AES
import base64
BLOCK_SIZE = 16
def bytes_to_key(data, salt, output=48):
data += salt
key = md5(data).digest()
final_key = key
while len(final_key) < output:
key = md5(key + data).digest()
final_key += key
return final_key[:output]
def decrypt_text(enc):
try:
enc = base64.b64decode(enc)
assert enc[0:8] == b"Salted__"
salt = enc[8:16]
key_iv = bytes_to_key(encrypt_key, salt, 32 + 16)
key = key_iv[:32]
iv = key_iv[32:]
aes = AES.new(key, AES.MODE_CBC, iv)
text = unpad(aes.decrypt(enc[16:]))
return text
except Exception as e:
resp = jsonify({constants.ERR_SERVER: e.message})
resp.status_code = 403
logger.error("Exception %s", e.message)
return resp
def unpad(data):
return data[:-(data[-1] if type(data[-1]) == int else ord(data[-1]))]

相关内容

  • 没有找到相关文章

最新更新