This is a Rust implementation of the AEGIS authenticated cipher, ported from the Zig standard library.
AEGIS is extremely fast on CPUs with AES acceleration, has a large nonce size, and is key committing.
std
: allow dynamic allocationsaes_crate
: use the aes
crate, which works on all platformsaesni
: use an optimized implementation for x86 CPUs with AES extensionsstd, aes_crate
is the default.