From: Pauli Date: Mon, 25 Aug 2025 23:06:49 +0000 (+1000) Subject: dh/dsa: rename files in anticipation of using generated param name parsers X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b8568e3ad6396520bfd3d55edcb9fc2000b91c84;p=thirdparty%2Fopenssl.git dh/dsa: rename files in anticipation of using generated param name parsers Reviewed-by: Shane Lontis Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/28360) --- diff --git a/.gitignore b/.gitignore index 6a7310abea4..d689ed1cc53 100644 --- a/.gitignore +++ b/.gitignore @@ -121,6 +121,8 @@ providers/implementations/keymgmt/ml_kem_kmgmt.c providers/implementations/keymgmt/mlx_kmgmt.c providers/implementations/signature/dsa_sig.c providers/implementations/signature/ecdsa_sig.c +providers/implementations/keymgmt/dh_kmgmt.c +providers/implementations/keymgmt/dsa_kmgmt.c providers/implementations/keymgmt/ecx_kmgmt.c providers/implementations/keymgmt/lms_kmgmt.c providers/implementations/keymgmt/mac_legacy_kmgmt.c diff --git a/build.info b/build.info index 84a046e1120..8af40479e4d 100644 --- a/build.info +++ b/build.info @@ -78,6 +78,8 @@ DEPEND[]=include/openssl/asn1.h \ providers/implementations/kem/ecx_kem.c \ providers/implementations/kem/ml_kem_kem.c \ providers/implementations/kem/rsa_kem.c \ + providers/implementations/keymgmt/dh_kmgmt.c \ + providers/implementations/keymgmt/dsa_kmgmt.c \ providers/implementations/keymgmt/ecx_kmgmt.c \ providers/implementations/keymgmt/lms_kmgmt.c \ providers/implementations/keymgmt/mac_legacy_kmgmt.c \ @@ -182,6 +184,8 @@ DEPEND[providers/implementations/asymciphers/rsa_enc.c \ providers/implementations/kem/ecx_kem.c \ providers/implementations/kem/ml_kem_kem.c \ providers/implementations/kem/rsa_kem.c \ + providers/implementations/keymgmt/dh_kmgmt.c \ + providers/implementations/keymgmt/dsa_kmgmt.c \ providers/implementations/keymgmt/ecx_kmgmt.c \ providers/implementations/keymgmt/lms_kmgmt.c \ providers/implementations/keymgmt/mac_legacy_kmgmt.c \ @@ -283,6 +287,10 @@ GENERATE[providers/implementations/kem/ml_kem_kem.c]=\ providers/implementations/kem/ml_kem_kem.c.in GENERATE[providers/implementations/kem/rsa_kem.c]=\ providers/implementations/kem/rsa_kem.c.in +GENERATE[providers/implementations/keymgmt/dh_kmgmt.c]=\ + providers/implementations/keymgmt/dh_kmgmt.c.in +GENERATE[providers/implementations/keymgmt/dsa_kmgmt.c]=\ + providers/implementations/keymgmt/dsa_kmgmt.c.in GENERATE[providers/implementations/keymgmt/ecx_kmgmt.c]=\ providers/implementations/keymgmt/ecx_kmgmt.c.in GENERATE[providers/implementations/keymgmt/lms_kmgmt.c]=\ diff --git a/providers/implementations/keymgmt/dh_kmgmt.c b/providers/implementations/keymgmt/dh_kmgmt.c.in similarity index 100% rename from providers/implementations/keymgmt/dh_kmgmt.c rename to providers/implementations/keymgmt/dh_kmgmt.c.in diff --git a/providers/implementations/keymgmt/dsa_kmgmt.c b/providers/implementations/keymgmt/dsa_kmgmt.c.in similarity index 100% rename from providers/implementations/keymgmt/dsa_kmgmt.c rename to providers/implementations/keymgmt/dsa_kmgmt.c.in