From: Pauli Date: Sun, 27 Jul 2025 22:44:38 +0000 (+1000) Subject: signatures: rename files in anticipation of generated param decoding X-Git-Tag: openssl-3.6.0-alpha1~143 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2c214751fe7b84640224415fa46c3d920ffc4a73;p=thirdparty%2Fopenssl.git signatures: rename files in anticipation of generated param decoding Reviewed-by: Paul Yang Reviewed-by: Shane Lontis Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/28150) --- diff --git a/.gitignore b/.gitignore index 725159064fc..cd0edb3a851 100644 --- a/.gitignore +++ b/.gitignore @@ -111,8 +111,13 @@ providers/implementations/kem/rsa_kem.c providers/implementations/keymgmt/ml_dsa_kmgmt.c 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/signature/eddsa_sig.c providers/implementations/signature/ml_dsa_sig.c +providers/implementations/signature/rsa_sig.c +providers/implementations/signature/slh_dsa_sig.c +providers/implementations/signature/sm2_sig.c providers/implementations/skeymgmt/generic.c providers/implementations/storemgmt/file_store_any2obj.c providers/implementations/storemgmt/file_store.c diff --git a/build.info b/build.info index e6a89fc8c7d..9f163182d4d 100644 --- a/build.info +++ b/build.info @@ -74,8 +74,13 @@ DEPEND[]=include/openssl/asn1.h \ providers/implementations/keymgmt/ml_dsa_kmgmt.c \ 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/signature/eddsa_sig.c \ providers/implementations/signature/ml_dsa_sig.c \ + providers/implementations/signature/rsa_sig.c \ + providers/implementations/signature/slh_dsa_sig.c \ + providers/implementations/signature/sm2_sig.c \ providers/implementations/skeymgmt/generic.c \ providers/implementations/storemgmt/file_store_any2obj.c \ providers/implementations/storemgmt/file_store.c \ @@ -161,8 +166,13 @@ DEPEND[providers/implementations/asymciphers/rsa_enc.c \ providers/implementations/keymgmt/ml_dsa_kmgmt.c \ 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/signature/eddsa_sig.c \ providers/implementations/signature/ml_dsa_sig.c \ + providers/implementations/signature/rsa_sig.c \ + providers/implementations/signature/slh_dsa_sig.c \ + providers/implementations/signature/sm2_sig.c \ providers/implementations/skeymgmt/generic.c \ providers/implementations/storemgmt/file_store_any2obj.c \ providers/implementations/storemgmt/file_store.c \ @@ -241,10 +251,20 @@ GENERATE[providers/implementations/keymgmt/ml_kem_kmgmt.c]=\ providers/implementations/keymgmt/ml_kem_kmgmt.c.in GENERATE[providers/implementations/keymgmt/mlx_kmgmt.c]=\ providers/implementations/keymgmt/mlx_kmgmt.c.in +GENERATE[providers/implementations/signature/dsa_sig.c]=\ + providers/implementations/signature/dsa_sig.c.in +GENERATE[providers/implementations/signature/ecdsa_sig.c]=\ + providers/implementations/signature/ecdsa_sig.c.in GENERATE[providers/implementations/signature/eddsa_sig.c]=\ providers/implementations/signature/eddsa_sig.c.in GENERATE[providers/implementations/signature/ml_dsa_sig.c]=\ providers/implementations/signature/ml_dsa_sig.c.in +GENERATE[providers/implementations/signature/rsa_sig.c]=\ + providers/implementations/signature/rsa_sig.c.in +GENERATE[providers/implementations/signature/slh_dsa_sig.c]=\ + providers/implementations/signature/slh_dsa_sig.c.in +GENERATE[providers/implementations/signature/sm2_sig.c]=\ + providers/implementations/signature/sm2_sig.c.in GENERATE[providers/implementations/skeymgmt/generic.c]=\ providers/implementations/skeymgmt/generic.c.in GENERATE[providers/implementations/storemgmt/file_store_any2obj.c]=\ diff --git a/providers/implementations/signature/dsa_sig.c b/providers/implementations/signature/dsa_sig.c.in similarity index 100% rename from providers/implementations/signature/dsa_sig.c rename to providers/implementations/signature/dsa_sig.c.in diff --git a/providers/implementations/signature/ecdsa_sig.c b/providers/implementations/signature/ecdsa_sig.c.in similarity index 100% rename from providers/implementations/signature/ecdsa_sig.c rename to providers/implementations/signature/ecdsa_sig.c.in diff --git a/providers/implementations/signature/rsa_sig.c b/providers/implementations/signature/rsa_sig.c.in similarity index 100% rename from providers/implementations/signature/rsa_sig.c rename to providers/implementations/signature/rsa_sig.c.in diff --git a/providers/implementations/signature/slh_dsa_sig.c b/providers/implementations/signature/slh_dsa_sig.c.in similarity index 100% rename from providers/implementations/signature/slh_dsa_sig.c rename to providers/implementations/signature/slh_dsa_sig.c.in diff --git a/providers/implementations/signature/sm2_sig.c b/providers/implementations/signature/sm2_sig.c.in similarity index 100% rename from providers/implementations/signature/sm2_sig.c rename to providers/implementations/signature/sm2_sig.c.in