From: Pauli Date: Fri, 19 Sep 2025 01:16:45 +0000 (+1000) Subject: chacha20: rename files in anticipation of generated param decoding X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=47d8dd2397d45fad96ea846f38d4e4c91b13babf;p=thirdparty%2Fopenssl.git chacha20: rename files in anticipation of generated 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 ef4adfb6294..77518d20479 100644 --- a/.gitignore +++ b/.gitignore @@ -146,6 +146,7 @@ providers/implementations/ciphers/cipher_aes_xts.c providers/implementations/ciphers/ciphercommon.c providers/implementations/ciphers/ciphercommon_ccm.c providers/implementations/ciphers/ciphercommon_gcm.c +providers/implementations/ciphers/cipher_chacha20.c providers/implementations/ciphers/cipher_chacha20_poly1305.c providers/implementations/ciphers/cipher_null.c providers/implementations/ciphers/cipher_rc4_hmac_md5.c diff --git a/build.info b/build.info index ca53ec0659d..13d2a118ccc 100644 --- a/build.info +++ b/build.info @@ -105,6 +105,7 @@ DEPEND[]=include/openssl/asn1.h \ providers/implementations/ciphers/ciphercommon.c \ providers/implementations/ciphers/ciphercommon_ccm.c \ providers/implementations/ciphers/ciphercommon_gcm.c \ + providers/implementations/ciphers/cipher_chacha20.c \ providers/implementations/ciphers/cipher_chacha20_poly1305.c \ providers/implementations/ciphers/cipher_null.c \ providers/implementations/ciphers/cipher_rc4_hmac_md5.c \ @@ -218,6 +219,7 @@ DEPEND[providers/implementations/asymciphers/rsa_enc.c \ providers/implementations/ciphers/ciphercommon.c \ providers/implementations/ciphers/ciphercommon_ccm.c \ providers/implementations/ciphers/ciphercommon_gcm.c \ + providers/implementations/ciphers/cipher_chacha20.c \ providers/implementations/ciphers/cipher_chacha20_poly1305.c \ providers/implementations/ciphers/cipher_null.c \ providers/implementations/ciphers/cipher_rc4_hmac_md5.c \ @@ -355,6 +357,8 @@ GENERATE[providers/implementations/ciphers/ciphercommon_ccm.c]=\ providers/implementations/ciphers/ciphercommon_ccm.c.in GENERATE[providers/implementations/ciphers/ciphercommon_gcm.c]=\ providers/implementations/ciphers/ciphercommon_gcm.c.in +GENERATE[providers/implementations/ciphers/cipher_chacha20.c]=\ + providers/implementations/ciphers/cipher_chacha20.c.in GENERATE[providers/implementations/ciphers/cipher_chacha20_poly1305.c]=\ providers/implementations/ciphers/cipher_chacha20_poly1305.c.in GENERATE[providers/implementations/ciphers/cipher_null.c]=\ diff --git a/providers/implementations/ciphers/build.info b/providers/implementations/ciphers/build.info index f205885c654..178f07707aa 100644 --- a/providers/implementations/ciphers/build.info +++ b/providers/implementations/ciphers/build.info @@ -91,8 +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_poly1305.o \ - cipher_rc4_hmac_md5.o cipher_sm4_xts.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} -}] SOURCE[$TDES_1_GOAL]=cipher_tdes.c cipher_tdes_common.c cipher_tdes_hw.c diff --git a/providers/implementations/ciphers/cipher_chacha20.c b/providers/implementations/ciphers/cipher_chacha20.c.in similarity index 100% rename from providers/implementations/ciphers/cipher_chacha20.c rename to providers/implementations/ciphers/cipher_chacha20.c.in