メモリ内のファイル コンテンツ全体を読み取り、次のコードを使用して暗号化できることがわかっています。
contents = fin.read()
cipher = M2Crypto.EVP.Cipher(alg="aes_128_cbc", key = aes_key, iv = aes_iv, op = 1)
encryptedContents = cipher.update(contents)
encryptedContents += cipher.final()
しかし、ファイル サイズが大きい場合、最初にファイル全体を読み取る代わりに、入力ストリームを M2Crypto に渡す方法はありますか?