0
こんにちは、私は前に(私はそれが信じていたIVの復号化された値)を復号化された文字列の前に取得していた。今私は...私は、この作品を作るのですか、今時間しようとしてどのように...文字列を取得しないPyCryptoが適切に印刷されていない
マイコード:
from Crypto.Cipher import AES
import hashlib
import base64
import os
import string
iv = os.urandom(16)
key = hashlib.sha256(b'mypassword123').digest()
plaintext = (b'the password is totally not secure')
cipher = AES.new(key, AES.MODE_CFB, iv)
ciphertext = iv + cipher.encrypt(plaintext)
print (ciphertext)
print ("IV = ",iv)
ciphertext = ciphertext.split(iv)
ciphertext = str(ciphertext)[1].strip()
plaintext = cipher.decrypt(ciphertext)
print (plaintext)