aboutsummaryrefslogtreecommitdiff
path: root/crypto/modes
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2021-06-18 17:35:40 +0200
committerMatt Caswell <matt@openssl.org>2021-06-25 08:49:45 +0100
commit3d178db73b1ac13011e950baae5225837c587df1 (patch)
tree448200c4eb072c508064fa3da5dfac76a89829c9 /crypto/modes
parent991519aeb99b41e2239b20a254535436cad39553 (diff)
downloadopenssl-3d178db73b1ac13011e950baae5225837c587df1.zip
openssl-3d178db73b1ac13011e950baae5225837c587df1.tar.gz
openssl-3d178db73b1ac13011e950baae5225837c587df1.tar.bz2
ppccap.c: Split out algorithm-specific functions
Fixes #13336 Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15828)
Diffstat (limited to 'crypto/modes')
-rw-r--r--crypto/modes/gcm128.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/modes/gcm128.c b/crypto/modes/gcm128.c
index bdcb619..8317fd4 100644
--- a/crypto/modes/gcm128.c
+++ b/crypto/modes/gcm128.c
@@ -683,7 +683,7 @@ void gcm_gmult_vis3(u64 Xi[2], const u128 Htable[16]);
void gcm_ghash_vis3(u64 Xi[2], const u128 Htable[16], const u8 *inp,
size_t len);
# elif defined(OPENSSL_CPUID_OBJ) && (defined(__powerpc__) || defined(__ppc__) || defined(_ARCH_PPC))
-# include "ppc_arch.h"
+# include "crypto/ppc_arch.h"
# define GHASH_ASM_PPC
# define GCM_FUNCREF_4BIT
void gcm_init_p8(u128 Htable[16], const u64 Xi[2]);