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:
Pauli 2025-09-18 15:58:23 +10:00 committed by Tomas Mraz
parent 78856cf024
commit 127430a96f
5 changed files with 12 additions and 0 deletions

2
.gitignore vendored
View File

@ -140,6 +140,8 @@ providers/implementations/skeymgmt/generic.c
providers/implementations/storemgmt/file_store_any2obj.c providers/implementations/storemgmt/file_store_any2obj.c
providers/implementations/storemgmt/file_store.c providers/implementations/storemgmt/file_store.c
providers/implementations/storemgmt/winstore_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.c
providers/implementations/ciphers/ciphercommon_ccm.c providers/implementations/ciphers/ciphercommon_ccm.c
providers/implementations/ciphers/ciphercommon_gcm.c providers/implementations/ciphers/ciphercommon_gcm.c

View File

@ -99,6 +99,8 @@ DEPEND[]=include/openssl/asn1.h \
providers/implementations/storemgmt/file_store_any2obj.c \ providers/implementations/storemgmt/file_store_any2obj.c \
providers/implementations/storemgmt/file_store.c \ providers/implementations/storemgmt/file_store.c \
providers/implementations/storemgmt/winstore_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.c \
providers/implementations/ciphers/ciphercommon_ccm.c \ providers/implementations/ciphers/ciphercommon_ccm.c \
providers/implementations/ciphers/ciphercommon_gcm.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_any2obj.c \
providers/implementations/storemgmt/file_store.c \ providers/implementations/storemgmt/file_store.c \
providers/implementations/storemgmt/winstore_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.c \
providers/implementations/ciphers/ciphercommon_ccm.c \ providers/implementations/ciphers/ciphercommon_ccm.c \
providers/implementations/ciphers/ciphercommon_gcm.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 providers/implementations/storemgmt/file_store.c.in
GENERATE[providers/implementations/storemgmt/winstore_store.c]=\ GENERATE[providers/implementations/storemgmt/winstore_store.c]=\
providers/implementations/storemgmt/winstore_store.c.in 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]=\ GENERATE[providers/implementations/ciphers/ciphercommon.c]=\
providers/implementations/ciphers/ciphercommon.c.in providers/implementations/ciphers/ciphercommon.c.in
GENERATE[providers/implementations/ciphers/ciphercommon_ccm.c]=\ GENERATE[providers/implementations/ciphers/ciphercommon_ccm.c]=\

View File

@ -90,6 +90,8 @@ SOURCE[$COMMON_GOAL]=\
ciphercommon_gcm.c ciphercommon_gcm_hw.c \ ciphercommon_gcm.c ciphercommon_gcm_hw.c \
ciphercommon_ccm.c ciphercommon_ccm_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[ciphercommon.o]=.
INCLUDE[cipher_chacha20_poly1305.o]=. INCLUDE[cipher_chacha20_poly1305.o]=.