Skip to content

Commit

Permalink
keccak: rename aarch64_sha3 module to armv8 (#25)
Browse files Browse the repository at this point in the history
This is more consistent with the other crates we have which implement
ARMv8 intrinsics, such as the `aes` and `polyal` crates.
  • Loading branch information
tarcieri committed Nov 13, 2022
1 parent a687839 commit 4e36eef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions keccak/src/lib.rs
Expand Up @@ -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");
Expand Down

0 comments on commit 4e36eef

Please sign in to comment.