key management: rename key management files in anticipations of generated decoding

Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/28275)
This commit is contained in:
Pauli 2025-08-06 11:05:55 +10:00
parent 3e2f54a718
commit ef77afe58b
5 changed files with 18 additions and 0 deletions

6
.gitignore vendored
View File

@ -121,6 +121,12 @@ providers/implementations/keymgmt/ml_kem_kmgmt.c
providers/implementations/keymgmt/mlx_kmgmt.c providers/implementations/keymgmt/mlx_kmgmt.c
providers/implementations/signature/dsa_sig.c providers/implementations/signature/dsa_sig.c
providers/implementations/signature/ecdsa_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/eddsa_sig.c
providers/implementations/signature/ml_dsa_sig.c providers/implementations/signature/ml_dsa_sig.c
providers/implementations/signature/rsa_sig.c providers/implementations/signature/rsa_sig.c

View File

@ -78,9 +78,12 @@ DEPEND[]=include/openssl/asn1.h \
providers/implementations/kem/ecx_kem.c \ providers/implementations/kem/ecx_kem.c \
providers/implementations/kem/ml_kem_kem.c \ providers/implementations/kem/ml_kem_kem.c \
providers/implementations/kem/rsa_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_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/keymgmt/slh_dsa_kmgmt.c \
providers/implementations/signature/dsa_sig.c \ providers/implementations/signature/dsa_sig.c \
providers/implementations/signature/ecdsa_sig.c \ providers/implementations/signature/ecdsa_sig.c \
providers/implementations/signature/eddsa_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/ecx_kem.c \
providers/implementations/kem/ml_kem_kem.c \ providers/implementations/kem/ml_kem_kem.c \
providers/implementations/kem/rsa_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_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/keymgmt/slh_dsa_kmgmt.c \
providers/implementations/signature/dsa_sig.c \ providers/implementations/signature/dsa_sig.c \
providers/implementations/signature/ecdsa_sig.c \ providers/implementations/signature/ecdsa_sig.c \
providers/implementations/signature/eddsa_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 providers/implementations/kem/ml_kem_kem.c.in
GENERATE[providers/implementations/kem/rsa_kem.c]=\ GENERATE[providers/implementations/kem/rsa_kem.c]=\
providers/implementations/kem/rsa_kem.c.in 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]=\ GENERATE[providers/implementations/keymgmt/ml_dsa_kmgmt.c]=\
providers/implementations/keymgmt/ml_dsa_kmgmt.c.in providers/implementations/keymgmt/ml_dsa_kmgmt.c.in
GENERATE[providers/implementations/keymgmt/ml_kem_kmgmt.c]=\ 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/keymgmt/slh_dsa_kmgmt.c]=\
providers/implementations/keymgmt/slh_dsa_kmgmt.c.in
GENERATE[providers/implementations/signature/dsa_sig.c]=\ GENERATE[providers/implementations/signature/dsa_sig.c]=\
providers/implementations/signature/dsa_sig.c.in providers/implementations/signature/dsa_sig.c.in
GENERATE[providers/implementations/signature/ecdsa_sig.c]=\ GENERATE[providers/implementations/signature/ecdsa_sig.c]=\