diff options
author | Richard Levitte <levitte@openssl.org> | 2019-12-19 13:31:29 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2019-12-19 13:31:29 +0100 |
commit | c0d47492a77e67ce49cf3c538bdaf82ca90367cb (patch) | |
tree | 9e6e280ed86adee8e19df3066a0fafe0e9078296 /crypto/camellia | |
parent | Fix regression on x509 keyform argument (diff) | |
download | openssl-c0d47492a77e67ce49cf3c538bdaf82ca90367cb.tar.xz openssl-c0d47492a77e67ce49cf3c538bdaf82ca90367cb.zip |
CRYPTO: split cipher_platform.h into algorithm specific headers
aes_platform.h
cmll_platform.h
des_platform.h
To make this possible, we must also define DES_ASM and CMLL_ASM to
indicate that we have the necessary internal support.
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/10662)
Diffstat (limited to 'crypto/camellia')
-rw-r--r-- | crypto/camellia/build.info | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/camellia/build.info b/crypto/camellia/build.info index c10babc726..02f9afeb80 100644 --- a/crypto/camellia/build.info +++ b/crypto/camellia/build.info @@ -10,10 +10,12 @@ IF[{- !$disabled{asm} -}] # appropriate one IF[$CMLLASM_{- $target{asm_arch} -}] $CMLLASM=$CMLLASM_{- $target{asm_arch} -} + $CMLLDEF=CMLL_ASM ENDIF ENDIF SOURCE[../../libcrypto]=cmll_ecb.c cmll_ofb.c cmll_cfb.c cmll_ctr.c $CMLLASM +DEFINE[../../libcrypto]=$CMLLDEF GENERATE[cmll-x86.s]=asm/cmll-x86.pl DEPEND[cmll-x86.s]=../perlasm/x86asm.pl |