1 回答
TA贡献1799条经验 获得超9个赞
加密二进制数据适用于我的加密包(来自 anaconda)。您可能正在使用不同的包 - 如果您尝试加密字符串,我的包会出错。这可能只是一个稻草人,但这对我有用:
from Crypto.Cipher import AES
from Crypto.Hash import SHA256
import random
password = "temp"
hashObj = SHA256.new(password.encode("utf-8"))
hkey = hashObj.digest()
def Encrypt(msg, blocksize=16):
"""encrypt msg with padding to blocksize. Padding rule is to fill with
NUL up to the final character which is the padding size as an 8-bit
integer (retrieved as `msg[-1]`)
"""
assert blocksize > 2 and blocksize < 256
last = len(msg) % blocksize
pad = blocksize - last
random_pad = bytes(random.sample(range(255), pad-1))
msg = msg + random_pad + bytes([pad])
cipher = AES.new(hkey,AES.MODE_ECB)
cipherTxt = cipher.encrypt(msg)
return cipherTxt
def Decrypt(msg): #AES
decipher = AES.new(hkey,AES.MODE_ECB)
print('msg size', len(msg))
plain = decipher.decrypt(msg)
print('plain', plain)
original = plain[:-plain[-1]]
return original
# test binary data
sample = bytes(range(41))
print('sample', sample)
encrypted = Encrypt(sample, 16)
print('encrypted', encrypted)
print(len(sample), len(encrypted))
decrypted = Decrypt(encrypted)
print('decrypted', decrypted)
print('matched', decrypted == sample)
# test blocksize boundary
sample = bytes(range(48))
decrypted = Decrypt(Encrypt(sample))
print('on blocksize', sample==decrypted)
添加回答
举报