This is a set of AES-based constructions (AEAD, stream cipher, MAC) for WebAssembly applications written in Rust.
They are trivial to use and this crate has zero dependencies.
Benchmarks can be run with the cargo wasi bench
command.
Performance results using Wasmtime 9.0.1 on Apple M1
| algorithm | crate | throughput | | ----------- | ------------ | ---------- | | aes256-gcm | (aes crate) | 49.63 M/s | | aes256-gcm | (this crate) | 112.81 M/s | | aes128-gcm | (aes crate) | 59.87 M/s | | aes128-gcm | (this crate) | 112.24 M/s | | aes256-ocb | (this crate) | 168.43 M/s | | aes128-ocb | (this crate) | 215.23 M/s | | aegis-256 | (this crate) | 478.57 M/s | | aegis-128l | (aegis) | 62.84 M/s | | aegis-128l | (this crate) | 695.85 M/s | | aes128-ctr | (ctr) | 104.63 M/s | | aes128-ctr | (this crate) | 214.81 M/s | | cmac-aes128 | (cmac) | 53.99 M/s | | cmac-aes128 | (this crate) | 233.34 M/s |