The AEZ wide-block cipher: AEZ
This is a rust crate that wraps Ted Krovetz's AEZv5 implementation in C using AES-NI hardware optimizations.
Tests using test vectors pass.
This code has not been formally audited. Use it at your own risk!
To import aez
, add the following to the dependencies section of
your project's Cargo.toml
:
toml
aez = "^0.0.1"
Then import the crate as:
rust,no_run
extern crate aez;
Thanks to Ted Krovetz who wrote the AEZ v5 cipher in C with AES-NI and vector intrinsics hardware optimizations.
The license file has been included in the root directory of this crate and is entitled LICENSE, the GNU AFFERO GENERAL PUBLIC LICENSE.