From ef77afe58be015d294926aa95fc9f4a99d2efa22 Mon Sep 17 00:00:00 2001 From: Pauli Date: Wed, 6 Aug 2025 11:05:55 +1000 Subject: [PATCH] key management: rename key management files in anticipations of generated decoding Reviewed-by: Tomas Mraz Reviewed-by: Shane Lontis (Merged from https://github.com/openssl/openssl/pull/28275) --- .gitignore | 6 ++++++ build.info | 12 ++++++++++++ .../keymgmt/{ecx_kmgmt.c => ecx_kmgmt.c.in} | 0 .../keymgmt/{lms_kmgmt.c => lms_kmgmt.c.in} | 0 .../keymgmt/{slh_dsa_kmgmt.c => slh_dsa_kmgmt.c.in} | 0 5 files changed, 18 insertions(+) rename providers/implementations/keymgmt/{ecx_kmgmt.c => ecx_kmgmt.c.in} (100%) rename providers/implementations/keymgmt/{lms_kmgmt.c => lms_kmgmt.c.in} (100%) rename providers/implementations/keymgmt/{slh_dsa_kmgmt.c => slh_dsa_kmgmt.c.in} (100%) diff --git a/.gitignore b/.gitignore index c826bf47bbe..6bafc4dae7e 100644 --- a/.gitignore +++ b/.gitignore @@ -121,6 +121,12 @@ 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/ecx_kmgmt.c +providers/implementations/keymgmt/lms_kmgmt.c +providers/implementations/keymgmt/ml_dsa_kmgmt.c +providers/implementations/keymgmt/ml_kem_kmgmt.c +providers/implementations/keymgmt/mlx_kmgmt.c +providers/implementations/keymgmt/slh_dsa_kmgmt.c providers/implementations/signature/eddsa_sig.c providers/implementations/signature/ml_dsa_sig.c providers/implementations/signature/rsa_sig.c diff --git a/build.info b/build.info index 26196bb5fbb..7d4860bd266 100644 --- a/build.info +++ b/build.info @@ -78,9 +78,12 @@ 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/ecx_kmgmt.c \ + providers/implementations/keymgmt/lms_kmgmt.c \ providers/implementations/keymgmt/ml_dsa_kmgmt.c \ providers/implementations/keymgmt/ml_kem_kmgmt.c \ providers/implementations/keymgmt/mlx_kmgmt.c \ + providers/implementations/keymgmt/slh_dsa_kmgmt.c \ providers/implementations/signature/dsa_sig.c \ providers/implementations/signature/ecdsa_sig.c \ providers/implementations/signature/eddsa_sig.c \ @@ -177,9 +180,12 @@ 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/ecx_kmgmt.c \ + providers/implementations/keymgmt/lms_kmgmt.c \ providers/implementations/keymgmt/ml_dsa_kmgmt.c \ providers/implementations/keymgmt/ml_kem_kmgmt.c \ providers/implementations/keymgmt/mlx_kmgmt.c \ + providers/implementations/keymgmt/slh_dsa_kmgmt.c \ providers/implementations/signature/dsa_sig.c \ providers/implementations/signature/ecdsa_sig.c \ providers/implementations/signature/eddsa_sig.c \ @@ -273,12 +279,18 @@ 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/ecx_kmgmt.c]=\ + providers/implementations/keymgmt/ecx_kmgmt.c.in +GENERATE[providers/implementations/keymgmt/lms_kmgmt.c]=\ + providers/implementations/keymgmt/lms_kmgmt.c.in GENERATE[providers/implementations/keymgmt/ml_dsa_kmgmt.c]=\ providers/implementations/keymgmt/ml_dsa_kmgmt.c.in 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/keymgmt/slh_dsa_kmgmt.c]=\ + providers/implementations/keymgmt/slh_dsa_kmgmt.c.in GENERATE[providers/implementations/signature/dsa_sig.c]=\ providers/implementations/signature/dsa_sig.c.in GENERATE[providers/implementations/signature/ecdsa_sig.c]=\ diff --git a/providers/implementations/keymgmt/ecx_kmgmt.c b/providers/implementations/keymgmt/ecx_kmgmt.c.in similarity index 100% rename from providers/implementations/keymgmt/ecx_kmgmt.c rename to providers/implementations/keymgmt/ecx_kmgmt.c.in diff --git a/providers/implementations/keymgmt/lms_kmgmt.c b/providers/implementations/keymgmt/lms_kmgmt.c.in similarity index 100% rename from providers/implementations/keymgmt/lms_kmgmt.c rename to providers/implementations/keymgmt/lms_kmgmt.c.in diff --git a/providers/implementations/keymgmt/slh_dsa_kmgmt.c b/providers/implementations/keymgmt/slh_dsa_kmgmt.c.in similarity index 100% rename from providers/implementations/keymgmt/slh_dsa_kmgmt.c rename to providers/implementations/keymgmt/slh_dsa_kmgmt.c.in -- 2.47.3