From d42a1f7b09e8d5cb0f411e907ef9eeb11a2f8976 Mon Sep 17 00:00:00 2001 From: Pauli Date: Mon, 25 Aug 2025 15:48:02 +1000 Subject: [PATCH] legacy mac: rename files to enable generated param decoders Reviewed-by: Matt Caswell Reviewed-by: Shane Lontis (Merged from https://github.com/openssl/openssl/pull/28333) --- .gitignore | 1 + build.info | 4 ++++ .../keymgmt/{mac_legacy_kmgmt.c => mac_legacy_kmgmt.c.in} | 0 3 files changed, 5 insertions(+) rename providers/implementations/keymgmt/{mac_legacy_kmgmt.c => mac_legacy_kmgmt.c.in} (100%) diff --git a/.gitignore b/.gitignore index ed722bcf1c6..6a7310abea4 100644 --- a/.gitignore +++ b/.gitignore @@ -123,6 +123,7 @@ 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/mac_legacy_kmgmt.c providers/implementations/keymgmt/ml_dsa_kmgmt.c providers/implementations/keymgmt/ml_kem_kmgmt.c providers/implementations/keymgmt/mlx_kmgmt.c diff --git a/build.info b/build.info index ca99292bc4a..84a046e1120 100644 --- a/build.info +++ b/build.info @@ -80,6 +80,7 @@ DEPEND[]=include/openssl/asn1.h \ providers/implementations/kem/rsa_kem.c \ providers/implementations/keymgmt/ecx_kmgmt.c \ providers/implementations/keymgmt/lms_kmgmt.c \ + providers/implementations/keymgmt/mac_legacy_kmgmt.c \ providers/implementations/keymgmt/ml_dsa_kmgmt.c \ providers/implementations/keymgmt/ml_kem_kmgmt.c \ providers/implementations/keymgmt/mlx_kmgmt.c \ @@ -183,6 +184,7 @@ DEPEND[providers/implementations/asymciphers/rsa_enc.c \ providers/implementations/kem/rsa_kem.c \ providers/implementations/keymgmt/ecx_kmgmt.c \ providers/implementations/keymgmt/lms_kmgmt.c \ + providers/implementations/keymgmt/mac_legacy_kmgmt.c \ providers/implementations/keymgmt/ml_dsa_kmgmt.c \ providers/implementations/keymgmt/ml_kem_kmgmt.c \ providers/implementations/keymgmt/mlx_kmgmt.c \ @@ -285,6 +287,8 @@ 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/mac_legacy_kmgmt.c]=\ + providers/implementations/keymgmt/mac_legacy_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]=\ diff --git a/providers/implementations/keymgmt/mac_legacy_kmgmt.c b/providers/implementations/keymgmt/mac_legacy_kmgmt.c.in similarity index 100% rename from providers/implementations/keymgmt/mac_legacy_kmgmt.c rename to providers/implementations/keymgmt/mac_legacy_kmgmt.c.in -- 2.47.3