diff options
author | Daniel Schadt <kingdread@gmx.de> | 2025-08-13 19:41:45 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2025-08-13 19:41:45 +0200 |
commit | 9c563b51b88b942d9d201f8c7e2fb6fec32c4d30 (patch) | |
tree | 828211aa45d0e681575d3ace98d603bed09f54db /src | |
parent | b43c8ea324fcf484191b7fcf097b1b0dd6234c1d (diff) | |
download | zears-9c563b51b88b942d9d201f8c7e2fb6fec32c4d30.tar.gz zears-9c563b51b88b942d9d201f8c7e2fb6fec32c4d30.tar.bz2 zears-9c563b51b88b942d9d201f8c7e2fb6fec32c4d30.zip |
update docs
there are no vectorized instructions in this code
Diffstat (limited to 'src')
-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): |