PythonでAES暗号を取り扱わなければならなくなったので備忘録代わりにメモ。 まずはPyCryptoをインストール。 $ pip install PyCrypto それではAESの暗号化、復号化してみるよ。 こんなコード書いてみた。 CBCモードで初期ベクトルは乱数を使ってる。 import os import hashlib from Crypto.Cipher import AES # key and initial vector secret_key = hashlib.sha256('This is secret passphrase.').digest() iv = os.urandom(16) # plain text plain_text = 'A' * 16 # encrypt aes = AES.new(secret_key, AES.MODE_CBC, iv) en