From: Pauli Date: Thu, 24 Jul 2025 01:28:12 +0000 (+1000) Subject: exchange: rename files for generated param decoders X-Git-Tag: openssl-3.6.0-alpha1~152 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6928f97b7c17dba12dd79a1b28e643177c93979e;p=thirdparty%2Fopenssl.git exchange: rename files for generated param decoders Reviewed-by: Paul Yang Reviewed-by: Shane Lontis Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/28148) --- diff --git a/.gitignore b/.gitignore index 9f128e929a6..f25747dc641 100644 --- a/.gitignore +++ b/.gitignore @@ -88,6 +88,9 @@ providers/common/include/prov/der_ml_dsa.h providers/common/include/prov/der_hkdf.h providers/implementations/asymciphers/rsa_enc.c providers/implementations/asymciphers/sm2_enc.c +providers/implementations/exchange/dh_exch.c +providers/implementations/exchange/ecdh_exch.c +providers/implementations/exchange/ecx_exch.c providers/implementations/kdfs/argon2.c providers/implementations/kdfs/hkdf.c providers/implementations/kdfs/hmacdrbg_kdf.c diff --git a/build.info b/build.info index 58a369049a0..97bb77233c4 100644 --- a/build.info +++ b/build.info @@ -50,6 +50,9 @@ DEPEND[]=include/openssl/asn1.h \ include/crypto/bn_conf.h include/crypto/dso_conf.h \ providers/implementations/asymciphers/rsa_enc.c \ providers/implementations/asymciphers/sm2_enc.c \ + providers/implementations/exchange/dh_exch.c \ + providers/implementations/exchange/ecdh_exch.c \ + providers/implementations/exchange/ecx_exch.c \ providers/implementations/kdfs/argon2.c \ providers/implementations/kdfs/hkdf.c \ providers/implementations/kdfs/hmacdrbg_kdf.c \ @@ -130,6 +133,9 @@ GENERATE[include/crypto/dso_conf.h]=include/crypto/dso_conf.h.in DEPEND[providers/implementations/asymciphers/rsa_enc.c \ providers/implementations/asymciphers/sm2_enc.c \ + providers/implementations/exchange/dh_exch.c \ + providers/implementations/exchange/ecdh_exch.c \ + providers/implementations/exchange/ecx_exch.c \ providers/implementations/kdfs/argon2.c \ providers/implementations/kdfs/hkdf.c \ providers/implementations/kdfs/hmacdrbg_kdf.c \ @@ -179,6 +185,12 @@ GENERATE[providers/implementations/asymciphers/rsa_enc.c]=\ providers/implementations/asymciphers/rsa_enc.c.in GENERATE[providers/implementations/asymciphers/sm2_enc.c]=\ providers/implementations/asymciphers/sm2_enc.c.in +GENERATE[providers/implementations/exchange/dh_exch.c]=\ + providers/implementations/exchange/dh_exch.c.in +GENERATE[providers/implementations/exchange/ecdh_exch.c]=\ + providers/implementations/exchange/ecdh_exch.c.in +GENERATE[providers/implementations/exchange/ecx_exch.c]=\ + providers/implementations/exchange/ecx_exch.c.in GENERATE[providers/implementations/kdfs/argon2.c]=\ providers/implementations/kdfs/argon2.c.in GENERATE[providers/implementations/kdfs/hkdf.c]=\ diff --git a/providers/implementations/exchange/dh_exch.c b/providers/implementations/exchange/dh_exch.c.in similarity index 100% rename from providers/implementations/exchange/dh_exch.c rename to providers/implementations/exchange/dh_exch.c.in diff --git a/providers/implementations/exchange/ecdh_exch.c b/providers/implementations/exchange/ecdh_exch.c.in similarity index 100% rename from providers/implementations/exchange/ecdh_exch.c rename to providers/implementations/exchange/ecdh_exch.c.in diff --git a/providers/implementations/exchange/ecx_exch.c b/providers/implementations/exchange/ecx_exch.c.in similarity index 100% rename from providers/implementations/exchange/ecx_exch.c rename to providers/implementations/exchange/ecx_exch.c.in