update build infrastructure to support generated eddsa_sig.c

Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/27859)
This commit is contained in:
Pauli 2025-06-20 12:37:29 +10:00
parent da5fec0797
commit ff9fb92915
2 changed files with 5 additions and 0 deletions

1
.gitignore vendored
View File

@ -87,6 +87,7 @@ providers/common/include/prov/der_ml_dsa.h
providers/implementations/keymgmt/ml_dsa_kmgmt.c providers/implementations/keymgmt/ml_dsa_kmgmt.c
providers/implementations/keymgmt/ml_kem_kmgmt.c providers/implementations/keymgmt/ml_kem_kmgmt.c
providers/implementations/keymgmt/mlx_kmgmt.c providers/implementations/keymgmt/mlx_kmgmt.c
providers/implementations/signature/eddsa_sig.c
providers/implementations/signature/ml_dsa_sig.c providers/implementations/signature/ml_dsa_sig.c
providers/implementations/ciphers/ciphercommon.c providers/implementations/ciphers/ciphercommon.c
providers/implementations/ciphers/ciphercommon_ccm.c providers/implementations/ciphers/ciphercommon_ccm.c

View File

@ -51,6 +51,7 @@ DEPEND[]=include/openssl/asn1.h \
providers/implementations/keymgmt/ml_dsa_kmgmt.c \ providers/implementations/keymgmt/ml_dsa_kmgmt.c \
providers/implementations/keymgmt/ml_kem_kmgmt.c \ providers/implementations/keymgmt/ml_kem_kmgmt.c \
providers/implementations/keymgmt/mlx_kmgmt.c \ providers/implementations/keymgmt/mlx_kmgmt.c \
providers/implementations/signature/eddsa_sig.c \
providers/implementations/signature/ml_dsa_sig.c \ providers/implementations/signature/ml_dsa_sig.c \
providers/implementations/ciphers/ciphercommon.c \ providers/implementations/ciphers/ciphercommon.c \
providers/implementations/ciphers/ciphercommon_ccm.c \ providers/implementations/ciphers/ciphercommon_ccm.c \
@ -94,6 +95,7 @@ GENERATE[include/crypto/dso_conf.h]=include/crypto/dso_conf.h.in
DEPEND[providers/implementations/keymgmt/ml_dsa_kmgmt.c \ DEPEND[providers/implementations/keymgmt/ml_dsa_kmgmt.c \
providers/implementations/keymgmt/ml_kem_kmgmt.c \ providers/implementations/keymgmt/ml_kem_kmgmt.c \
providers/implementations/keymgmt/mlx_kmgmt.c \ providers/implementations/keymgmt/mlx_kmgmt.c \
providers/implementations/signature/eddsa_sig.c \
providers/implementations/signature/ml_dsa_sig.c \ providers/implementations/signature/ml_dsa_sig.c \
providers/implementations/ciphers/ciphercommon.c \ providers/implementations/ciphers/ciphercommon.c \
providers/implementations/ciphers/ciphercommon_ccm.c \ providers/implementations/ciphers/ciphercommon_ccm.c \
@ -107,6 +109,8 @@ GENERATE[providers/implementations/keymgmt/ml_kem_kmgmt.c]=\
providers/implementations/keymgmt/ml_kem_kmgmt.c.in providers/implementations/keymgmt/ml_kem_kmgmt.c.in
GENERATE[providers/implementations/keymgmt/mlx_kmgmt.c]=\ GENERATE[providers/implementations/keymgmt/mlx_kmgmt.c]=\
providers/implementations/keymgmt/mlx_kmgmt.c.in providers/implementations/keymgmt/mlx_kmgmt.c.in
GENERATE[providers/implementations/signature/eddsa_sig.c]=\
providers/implementations/signature/eddsa_sig.c.in
GENERATE[providers/implementations/signature/ml_dsa_sig.c]=\ GENERATE[providers/implementations/signature/ml_dsa_sig.c]=\
providers/implementations/signature/ml_dsa_sig.c.in providers/implementations/signature/ml_dsa_sig.c.in
GENERATE[providers/implementations/ciphers/ciphercommon.c]=\ GENERATE[providers/implementations/ciphers/ciphercommon.c]=\