From: Pauli Date: Fri, 19 Sep 2025 01:30:29 +0000 (+1000) Subject: aes: rename files in anticipation of gerenated param decoding X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9b545c736171ec9a8a46a3e67208d8dc00490e90;p=thirdparty%2Fopenssl.git aes: rename files in anticipation of gerenated param decoding Reviewed-by: Shane Lontis Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/28616) --- diff --git a/.gitignore b/.gitignore index 77518d20479..88cd92f9d0d 100644 --- a/.gitignore +++ b/.gitignore @@ -142,6 +142,10 @@ 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/cipher_aes_gcm_siv.c +providers/implementations/ciphers/cipher_aes_ocb.c +providers/implementations/ciphers/cipher_aes_siv.c +providers/implementations/ciphers/cipher_aes_wrp.c providers/implementations/ciphers/cipher_aes_xts.c providers/implementations/ciphers/ciphercommon.c providers/implementations/ciphers/ciphercommon_ccm.c diff --git a/build.info b/build.info index 13d2a118ccc..d63a1d9e028 100644 --- a/build.info +++ b/build.info @@ -101,6 +101,10 @@ DEPEND[]=include/openssl/asn1.h \ 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/cipher_aes_gcm_siv.c \ + providers/implementations/ciphers/cipher_aes_ocb.c \ + providers/implementations/ciphers/cipher_aes_siv.c \ + providers/implementations/ciphers/cipher_aes_wrp.c \ providers/implementations/ciphers/cipher_aes_xts.c \ providers/implementations/ciphers/ciphercommon.c \ providers/implementations/ciphers/ciphercommon_ccm.c \ @@ -215,6 +219,10 @@ DEPEND[providers/implementations/asymciphers/rsa_enc.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/cipher_aes_gcm_siv.c \ + providers/implementations/ciphers/cipher_aes_ocb.c \ + providers/implementations/ciphers/cipher_aes_siv.c \ + providers/implementations/ciphers/cipher_aes_wrp.c \ providers/implementations/ciphers/cipher_aes_xts.c \ providers/implementations/ciphers/ciphercommon.c \ providers/implementations/ciphers/ciphercommon_ccm.c \ @@ -349,6 +357,14 @@ 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/cipher_aes_gcm_siv.c]=\ + providers/implementations/ciphers/cipher_aes_gcm_siv.c.in +GENERATE[providers/implementations/ciphers/cipher_aes_ocb.c]=\ + providers/implementations/ciphers/cipher_aes_ocb.c.in +GENERATE[providers/implementations/ciphers/cipher_aes_siv.c]=\ + providers/implementations/ciphers/cipher_aes_siv.c.in +GENERATE[providers/implementations/ciphers/cipher_aes_wrp.c]=\ + providers/implementations/ciphers/cipher_aes_wrp.c.in GENERATE[providers/implementations/ciphers/cipher_aes_xts.c]=\ providers/implementations/ciphers/cipher_aes_xts.c.in GENERATE[providers/implementations/ciphers/ciphercommon.c]=\ diff --git a/providers/implementations/ciphers/build.info b/providers/implementations/ciphers/build.info index 178f07707aa..dc43b8980c1 100644 --- a/providers/implementations/ciphers/build.info +++ b/providers/implementations/ciphers/build.info @@ -91,7 +91,8 @@ SOURCE[$COMMON_GOAL]=\ ciphercommon_ccm.c ciphercommon_ccm_hw.c INCLUDE[cipher_aes_cbc_hmac_sha.o cipher_aes_cbc_hmac_sha_etm.o \ - cipher_aes_xts.o ciphercommon.o cipher_chacha20.o \ + cipher_aes_gcm_siv.o cipher_aes_ocb.o cipher_aes_siv.o \ + cipher_aes_wrp.o cipher_aes_xts.o ciphercommon.o cipher_chacha20.o \ cipher_chacha20_poly1305.o cipher_rc4_hmac_md5.o cipher_sm4_xts.o]=. IF[{- !$disabled{des} -}] diff --git a/providers/implementations/ciphers/cipher_aes_gcm_siv.c b/providers/implementations/ciphers/cipher_aes_gcm_siv.c.in similarity index 100% rename from providers/implementations/ciphers/cipher_aes_gcm_siv.c rename to providers/implementations/ciphers/cipher_aes_gcm_siv.c.in diff --git a/providers/implementations/ciphers/cipher_aes_ocb.c b/providers/implementations/ciphers/cipher_aes_ocb.c.in similarity index 100% rename from providers/implementations/ciphers/cipher_aes_ocb.c rename to providers/implementations/ciphers/cipher_aes_ocb.c.in diff --git a/providers/implementations/ciphers/cipher_aes_siv.c b/providers/implementations/ciphers/cipher_aes_siv.c.in similarity index 100% rename from providers/implementations/ciphers/cipher_aes_siv.c rename to providers/implementations/ciphers/cipher_aes_siv.c.in diff --git a/providers/implementations/ciphers/cipher_aes_wrp.c b/providers/implementations/ciphers/cipher_aes_wrp.c.in similarity index 100% rename from providers/implementations/ciphers/cipher_aes_wrp.c rename to providers/implementations/ciphers/cipher_aes_wrp.c.in