好吧,我有一个任务是在 CBC 模式下实现 DES 算法的操作模式:我被困在加密函数的输出给出如下字节的点:b'\xe4\x06-\x95\xf5!P4 '(我正在使用 Crypto.Cipher 的 DES 库)
我不知道该表示是什么或如何将其转换为由零和一组成的二进制字符串,以将其与第二个纯文本进行异或。
任何帮助将不胜感激
iv = random_iv()
des = DES.new(key)
plaintext1=""
#convert it into binary
plaintext1=bin(int.from_bytes(arr[0].encode(), 'big'))[2:]
y = fn.xor(plaintext1 ,iv)
y1='0'+'b'+y
y= int(y1, 2)
#y is the string output of xoring plaintext1 with the IV
y= y.to_bytes((y.bit_length() + 7) // 8, 'big').decode()
encrypted_blocks=[]
# arr is the array of the original blocks of the msg.
for i in range (1, len(arr)):
c = des.encrypt(y)
print(c)
encrypted_blocks.append(c)
### stuck here ###
#### don't know how to work with c in that format ######