summaryrefslogtreecommitdiffstats
path: root/providers
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2023-09-13 08:29:17 +0200
committerPauli <pauli@openssl.org>2023-09-15 08:29:40 +1000
commit46b43c9f98771139735656e541c8f4c8018c2667 (patch)
tree35462138f80b45e934fff9c5d0d2335b1691d3c2 /providers
parent8f51b2279eda1e0cffb3400c2e5b5c3771f62ea7 (diff)
Fix build of SHA3 on ARM64 with no-asm
Fixes #22089 Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22090)
Diffstat (limited to 'providers')
-rw-r--r--providers/implementations/digests/sha3_prov.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/providers/implementations/digests/sha3_prov.c b/providers/implementations/digests/sha3_prov.c
index 0c643f8238..423bed7983 100644
--- a/providers/implementations/digests/sha3_prov.c
+++ b/providers/implementations/digests/sha3_prov.c
@@ -249,7 +249,7 @@ static PROV_SHA3_METHOD kmac_s390x_md =
} else { \
ctx->meth = sha3_generic_md; \
}
-#elif defined(__aarch64__)
+#elif defined(__aarch64__) && defined(KECCAK1600_ASM)
# include "arm_arch.h"
static sha3_absorb_fn armsha3_sha3_absorb;