diff --git a/.gitignore b/.gitignore index c826bf47bb..6bafc4dae7 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 26196bb5fb..7d4860bd26 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