summaryrefslogtreecommitdiffstats
path: root/vendor/sha2/src/sha512.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/sha2/src/sha512.rs')
-rw-r--r--vendor/sha2/src/sha512.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/vendor/sha2/src/sha512.rs b/vendor/sha2/src/sha512.rs
index e71fdfa43..af4178c0b 100644
--- a/vendor/sha2/src/sha512.rs
+++ b/vendor/sha2/src/sha512.rs
@@ -15,6 +15,10 @@ cfg_if::cfg_if! {
}
mod x86;
use x86::compress;
+ } else if #[cfg(all(feature = "asm", target_arch = "aarch64"))] {
+ mod soft;
+ mod aarch64;
+ use aarch64::compress;
} else {
mod soft;
use soft::compress;