aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Schadt <kingdread@gmx.de>2025-08-13 19:41:45 +0200
committerDaniel Schadt <kingdread@gmx.de>2025-08-13 19:41:45 +0200
commit9c563b51b88b942d9d201f8c7e2fb6fec32c4d30 (patch)
tree828211aa45d0e681575d3ace98d603bed09f54db
parentb43c8ea324fcf484191b7fcf097b1b0dd6234c1d (diff)
downloadzears-9c563b51b88b942d9d201f8c7e2fb6fec32c4d30.tar.gz
zears-9c563b51b88b942d9d201f8c7e2fb6fec32c4d30.tar.bz2
zears-9c563b51b88b942d9d201f8c7e2fb6fec32c4d30.zip
update docs
there are no vectorized instructions in this code
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index f327959..6024e9b 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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):