Add AES encryption/decryption functions for working on iterables.
Review Request #12371 — Created June 14, 2022 and submitted
This introduces new
aes_encrypt_iter()
andaes_decrypt_iter()
functions indjblets.secrets.crypto
, which can operate on iterables.
aes_encrypt_iter()
iterates through an iterable that yields byte or
Unicode strings to encrypt. It then yields the encrypted blocks. It's
smart enough to include the IV in the first block and the finalizer in
the final block.
aes_decrypt_iter()
iterates through an iterable of encrypted byte
strings. It yields the decrypted blocks.These will be used internally for encrypted caching, but can also be
useful for things like streaming data to files or HTTP responses.
Unit tests pass.
- Change Summary:
-
- Fixed a docstring to say "decrypted" instead of "encrypted".
- Fixed capitalization of "IV" to be consistent, and defined "IV" in a larger comment.
- Commits:
-
Summary ID 5d854195c022685ef24e121bd0c3d075c061ff98 c79c7adc2e3a1991ef5319f34a879c6ade76dbea
Checks run (2 succeeded)
flake8
passed.
JSHint
passed.