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 /util/fix-includes.sed | |
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 'util/fix-includes.sed')
-rw-r--r-- | util/fix-includes.sed | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/fix-includes.sed b/util/fix-includes.sed index 5272e363fc..db66809a19 100644 --- a/util/fix-includes.sed +++ b/util/fix-includes.sed @@ -1,5 +1,5 @@ s|internal/([a-z0-9_]+)_int\.h|crypto/\1.h|g ; -s@internal/(aria.h|asn1_dsa.h|async.h|bn_conf.h|bn_conf.h|bn_dh.h|bn_srp.h|chacha.h|ciphermode_platform.h|ctype.h|__DECC_INCLUDE_EPILOGUE.H|__DECC_INCLUDE_PROLOGUE.H|dso_conf.h|dso_conf.h|engine.h|lhash.h|md32_common.h|objects.h|poly1305.h|sha.h|siphash.h|sm2err.h|sm2.h|sm4.h|sparse_array.h|store.h|foobar)@crypto/\1@g ; +s@internal/(aria.h|asn1_dsa.h|async.h|bn_conf.h|bn_conf.h|bn_dh.h|bn_srp.h|chacha.h|(aes|des|cmll)_platform.h|ctype.h|__DECC_INCLUDE_EPILOGUE.H|__DECC_INCLUDE_PROLOGUE.H|dso_conf.h|dso_conf.h|engine.h|lhash.h|md32_common.h|objects.h|poly1305.h|sha.h|siphash.h|sm2err.h|sm2.h|sm4.h|sparse_array.h|store.h|foobar)@crypto/\1@g ; s/constant_time_locl/constant_time/g ; s/_lo?cl\.h/_local.h/g ; s/_int\.h/_local.h/g ; |