keccak: rename aarch64_sha3 module to armv8 (#25)

This is more consistent with the other crates we have which implement
ARMv8 intrinsics, such as the `aes` and `polyal` crates.
This commit is contained in:
Tony Arcieri 2022-11-13 15:32:07 -07:00 committed by GitHub
parent a687839512
commit 4e36eefaa0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -50,10 +50,10 @@ use core::{
mod unroll;
#[cfg(all(target_arch = "aarch64", feature = "asm"))]
mod aarch64_sha3;
mod armv8;
#[cfg(all(target_arch = "aarch64", feature = "asm"))]
pub use aarch64_sha3::f1600_asm;
pub use armv8::f1600_asm;
#[cfg(all(target_arch = "aarch64", feature = "asm"))]
cpufeatures::new!(armv8_sha3_intrinsics, "sha3");