AEADs icon indicating copy to clipboard operation
AEADs copied to clipboard

Authenticated Encryption with Associated Data Algorithms: high-level encryption ciphers

Results 52 AEADs issues
Sort by recently updated
recently updated
newest added

Right now, ocb3 exclusively uses `BlockCipherEncrypt::encrypt_block` and `BlockCipherDecrypt::decrypt_block`. Although VAES support is coming in [block-ciphers#491](https://github.com/RustCrypto/block-ciphers/pull/491), ocb3 won't be able to take advantage of its (2-5x) speedups until `encrypt_blocks*`/`decrypt_blocks*` APIs are...

This is a continuation of #304 : I rebased my changes and refactored most of it for better readability. I tried to do it in the most concrete way, without...