buffered encryption:加密大型文件而无需将整个文件加载到内存中 源码
缓冲加密 安全地逐块加密大型数据文件。 该软件包在GCM模式下使用AES加密和解密文件流。 它依赖于加密库来执行加密。 big unencrypted file, verification data --> encrypt and sign --> encrypted file, iv, tag big unencrypted file <-- decrypt and verify <-- encrypted file, iv, tag, verification data 例子 GCM模式下的AES aesgcm模块提供了一种加密和解密整个文件的方法,而无需将整个内容加载到内存中。 它没有为加密文件提供类似文件的接口。 import os from buffered_encryption . aesgcm import EncryptionIterator , Decrypti
用户评论