mirror of https://github.com/openssl/openssl.git
aes_cbc_hmac: rename files in anticipation of generated param decoding
Reviewed-by: Shane Lontis <shane.lontis@oracle.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/28616)
This commit is contained in:
parent
78856cf024
commit
127430a96f
|
@ -140,6 +140,8 @@ providers/implementations/skeymgmt/generic.c
|
|||
providers/implementations/storemgmt/file_store_any2obj.c
|
||||
providers/implementations/storemgmt/file_store.c
|
||||
providers/implementations/storemgmt/winstore_store.c
|
||||
providers/implementations/ciphers/cipher_aes_cbc_hmac_sha.c
|
||||
providers/implementations/ciphers/cipher_aes_cbc_hmac_sha_etm.c
|
||||
providers/implementations/ciphers/ciphercommon.c
|
||||
providers/implementations/ciphers/ciphercommon_ccm.c
|
||||
providers/implementations/ciphers/ciphercommon_gcm.c
|
||||
|
|
|
@ -99,6 +99,8 @@ DEPEND[]=include/openssl/asn1.h \
|
|||
providers/implementations/storemgmt/file_store_any2obj.c \
|
||||
providers/implementations/storemgmt/file_store.c \
|
||||
providers/implementations/storemgmt/winstore_store.c \
|
||||
providers/implementations/ciphers/cipher_aes_cbc_hmac_sha.c \
|
||||
providers/implementations/ciphers/cipher_aes_cbc_hmac_sha_etm.c \
|
||||
providers/implementations/ciphers/ciphercommon.c \
|
||||
providers/implementations/ciphers/ciphercommon_ccm.c \
|
||||
providers/implementations/ciphers/ciphercommon_gcm.c \
|
||||
|
@ -206,6 +208,8 @@ DEPEND[providers/implementations/asymciphers/rsa_enc.c \
|
|||
providers/implementations/storemgmt/file_store_any2obj.c \
|
||||
providers/implementations/storemgmt/file_store.c \
|
||||
providers/implementations/storemgmt/winstore_store.c \
|
||||
providers/implementations/ciphers/cipher_aes_cbc_hmac_sha.c \
|
||||
providers/implementations/ciphers/cipher_aes_cbc_hmac_sha_etm.c \
|
||||
providers/implementations/ciphers/ciphercommon.c \
|
||||
providers/implementations/ciphers/ciphercommon_ccm.c \
|
||||
providers/implementations/ciphers/ciphercommon_gcm.c \
|
||||
|
@ -331,6 +335,10 @@ GENERATE[providers/implementations/storemgmt/file_store.c]=\
|
|||
providers/implementations/storemgmt/file_store.c.in
|
||||
GENERATE[providers/implementations/storemgmt/winstore_store.c]=\
|
||||
providers/implementations/storemgmt/winstore_store.c.in
|
||||
GENERATE[providers/implementations/ciphers/cipher_aes_cbc_hmac_sha.c]=\
|
||||
providers/implementations/ciphers/cipher_aes_cbc_hmac_sha.c.in
|
||||
GENERATE[providers/implementations/ciphers/cipher_aes_cbc_hmac_sha_etm.c]=\
|
||||
providers/implementations/ciphers/cipher_aes_cbc_hmac_sha_etm.c.in
|
||||
GENERATE[providers/implementations/ciphers/ciphercommon.c]=\
|
||||
providers/implementations/ciphers/ciphercommon.c.in
|
||||
GENERATE[providers/implementations/ciphers/ciphercommon_ccm.c]=\
|
||||
|
|
|
@ -90,6 +90,8 @@ SOURCE[$COMMON_GOAL]=\
|
|||
ciphercommon_gcm.c ciphercommon_gcm_hw.c \
|
||||
ciphercommon_ccm.c ciphercommon_ccm_hw.c
|
||||
|
||||
INCLUDE[cipher_aes_cbc_hmac_sha.o]=.
|
||||
INCLUDE[cipher_aes_cbc_hmac_sha_etm.o]=.
|
||||
INCLUDE[ciphercommon.o]=.
|
||||
INCLUDE[cipher_chacha20_poly1305.o]=.
|
||||
|
||||
|
|
Loading…
Reference in New Issue