diff options
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -89,7 +89,7 @@ //! * Enable feature `simd` (requires nightly due to the `portable_simd` Rust feature) to speed up //! encryption and decryption by using SIMD instructions (if available). //! * Use `target-cpu=native` (e.g. by setting `RUSTFLAGS=-Ctarget-cpu=native`) to make the -//! compiler emit vectorized AES instructions (if available). This can speed up +//! compiler emit hardware AES instructions (if available). This can speed up //! encryption/decryption at the cost of producing less portable code. //! //! On my machine, this produces the following results (for the `encrypt_inplace/2048` benchmark): |