tkaitchuck / aHash

aHash is a non-cryptographic hashing algorithm that uses the AES hardware instruction
https://crates.io/crates/ahash
Apache License 2.0
986 stars 94 forks source link

AES not enabled on AArch64 #235

Open betelgeuse opened 2 months ago

betelgeuse commented 2 months ago

README says the library should automatically enable AES on AArch64

https://github.com/tkaitchuck/aHash/blob/7d5c661a74b12d5bc5448b0b83fdb429190db1a3/README.md#L60

However, in source code we can see that aarch64 is combined with the nightly-arm-aes feature being enabled

https://github.com/tkaitchuck/aHash/blob/7d5c661a74b12d5bc5448b0b83fdb429190db1a3/src/lib.rs#L111