diff options
author | Shane Lontis <shane.lontis@oracle.com> | 2019-10-15 04:35:41 +0200 |
---|---|---|
committer | Shane Lontis <shane.lontis@oracle.com> | 2019-10-16 08:10:39 +0200 |
commit | 64fd90fbe99dde18de3fc7c3a6b06793d87a4aad (patch) | |
tree | 8c1870ea8b90719689752e9fccd2f919bf67dc84 /crypto/poly1305 | |
parent | [ec_asn1.c] Avoid injecting seed when built-in matches (diff) | |
download | openssl-64fd90fbe99dde18de3fc7c3a6b06793d87a4aad.tar.xz openssl-64fd90fbe99dde18de3fc7c3a6b06793d87a4aad.zip |
Fix missing Assembler defines
Implementations are now spread across several libraries, so the assembler
related defines need to be applied to all affected libraries and modules.
AES_ASM define was missing from libimplementations.a which disabled AESNI
aarch64 changes were made by xkqian.
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/10180)
Diffstat (limited to 'crypto/poly1305')
-rw-r--r-- | crypto/poly1305/build.info | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/poly1305/build.info b/crypto/poly1305/build.info index 29cdf4c861..6425a01583 100644 --- a/crypto/poly1305/build.info +++ b/crypto/poly1305/build.info @@ -30,7 +30,11 @@ IF[{- !$disabled{asm} -}] ENDIF SOURCE[../../libcrypto]=poly1305_ameth.c poly1305.c $POLY1305ASM + +# Implementations are now spread across several libraries, so the defines +# need to be applied to all affected libraries and modules. DEFINE[../../libcrypto]=$POLY1305DEF +DEFINE[../providers/libimplementations.a]=$POLY1305DEF GENERATE[poly1305-sparcv9.S]=asm/poly1305-sparcv9.pl INCLUDE[poly1305-sparcv9.o]=.. |