ให้ฉันตอบคำถามของคุณเกี่ยวกับ "โหมด" AES256 เป็นชนิดของการเข้ารหัสบล็อก ใช้เป็นอินพุตคีย์ 32- ไบต์และสตริง 16- ไบต์เรียกว่าบล็อกและส่งออกบล็อก เราใช้ AES ในโหมดการทำงานเพื่อเข้ารหัส การแก้ปัญหาข้างต้นแนะนำให้ใช้ CBC ซึ่งเป็นตัวอย่างหนึ่ง อีกอันหนึ่งเรียกว่า CTR และใช้งานง่ายกว่า:
from Crypto.Cipher import AES
from Crypto.Util import Counter
from Crypto import Random
# AES supports multiple key sizes: 16 (AES128), 24 (AES192), or 32 (AES256).
key_bytes = 32
# Takes as input a 32-byte key and an arbitrary-length plaintext and returns a
# pair (iv, ciphtertext). "iv" stands for initialization vector.
def encrypt(key, plaintext):
assert len(key) == key_bytes
# Choose a random, 16-byte IV.
iv = Random.new().read(AES.block_size)
# Convert the IV to a Python integer.
iv_int = int(binascii.hexlify(iv), 16)
# Create a new Counter object with IV = iv_int.
ctr = Counter.new(AES.block_size * 8, initial_value=iv_int)
# Create AES-CTR cipher.
aes = AES.new(key, AES.MODE_CTR, counter=ctr)
# Encrypt and return IV and ciphertext.
ciphertext = aes.encrypt(plaintext)
return (iv, ciphertext)
# Takes as input a 32-byte key, a 16-byte IV, and a ciphertext, and outputs the
# corresponding plaintext.
def decrypt(key, iv, ciphertext):
assert len(key) == key_bytes
# Initialize counter for decryption. iv should be the same as the output of
# encrypt().
iv_int = int(iv.encode('hex'), 16)
ctr = Counter.new(AES.block_size * 8, initial_value=iv_int)
# Create AES-CTR cipher.
aes = AES.new(key, AES.MODE_CTR, counter=ctr)
# Decrypt and return the plaintext.
plaintext = aes.decrypt(ciphertext)
return plaintext
(iv, ciphertext) = encrypt(key, 'hella')
print decrypt(key, iv, ciphertext)
สิ่งนี้มักเรียกว่า AES-CTR ผมจะแนะนำให้ระมัดระวังในการใช้ AES-CBC กับ PyCrypto เหตุผลก็คือคุณจะต้องระบุรูปแบบการแพ็ดดิ้งดังที่ได้อธิบายไว้โดยโซลูชั่นอื่นที่ให้ไว้ โดยทั่วไปถ้าคุณไม่ได้มากระมัดระวังเกี่ยวกับช่องว่างภายในที่มีการโจมตีที่สมบูรณ์หยุดการเข้ารหัส!
ตอนนี้มันเป็นสิ่งสำคัญที่จะทราบว่ากุญแจสำคัญที่จะต้องเป็นแบบสุ่มสตริง 32 ไบต์ ; รหัสผ่านไม่เพียงพอ โดยปกติกุญแจจะถูกสร้างเช่น:
# Nominal way to generate a fresh key. This calls the system's random number
# generator (RNG).
key1 = Random.new().read(key_bytes)
รหัสอาจได้มาจากรหัสผ่านเช่นกัน:
# It's also possible to derive a key from a password, but it's important that
# the password have high entropy, meaning difficult to predict.
password = "This is a rather weak password."
# For added # security, we add a "salt", which increases the entropy.
#
# In this example, we use the same RNG to produce the salt that we used to
# produce key1.
salt_bytes = 8
salt = Random.new().read(salt_bytes)
# Stands for "Password-based key derivation function 2"
key2 = PBKDF2(password, salt, key_bytes)
แก้ปัญหาบางอย่างข้างต้นขอแนะนำให้ใช้ SHA256 สำหรับ deriving คีย์ แต่โดยทั่วไปถือว่าการปฏิบัติการเข้ารหัสลับที่ไม่ดี ลองอ่านวิกิพีเดียเพื่อเรียนรู้เพิ่มเติมเกี่ยวกับโหมดการทำงาน