mirror of https://github.com/openssl/openssl.git
build infrastructure changes for SSH KDF
Reviewed-by: Shane Lontis <shane.lontis@oracle.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/27923)
This commit is contained in:
parent
d8d0421bc2
commit
0c5bb0feff
|
@ -88,6 +88,7 @@ providers/common/include/prov/der_ml_dsa.h
|
|||
providers/common/include/prov/der_hkdf.h
|
||||
providers/implementations/kdfs/hkdf.c
|
||||
providers/implementations/kdfs/kbkdf.c
|
||||
providers/implementations/kdfs/sshkdf.c
|
||||
providers/implementations/kdfs/sskdf.c
|
||||
providers/implementations/kdfs/tls1_prf.c
|
||||
providers/implementations/keymgmt/ml_dsa_kmgmt.c
|
||||
|
|
|
@ -50,6 +50,7 @@ DEPEND[]=include/openssl/asn1.h \
|
|||
include/crypto/bn_conf.h include/crypto/dso_conf.h \
|
||||
providers/implementations/kdfs/hkdf.c \
|
||||
providers/implementations/kdfs/kbkdf.c \
|
||||
providers/implementations/kdfs/sshkdf.c \
|
||||
providers/implementations/kdfs/sskdf.c \
|
||||
providers/implementations/kdfs/tls1_prf.c \
|
||||
providers/implementations/keymgmt/ml_dsa_kmgmt.c \
|
||||
|
@ -98,6 +99,7 @@ GENERATE[include/crypto/dso_conf.h]=include/crypto/dso_conf.h.in
|
|||
|
||||
DEPEND[providers/implementations/kdfs/hkdf.c \
|
||||
providers/implementations/kdfs/kbkdf.c \
|
||||
providers/implementations/kdfs/sshkdf.c \
|
||||
providers/implementations/kdfs/sskdf.c \
|
||||
providers/implementations/kdfs/tls1_prf.c \
|
||||
providers/implementations/keymgmt/ml_dsa_kmgmt.c \
|
||||
|
@ -115,6 +117,8 @@ GENERATE[providers/implementations/kdfs/hkdf.c]=\
|
|||
providers/implementations/kdfs/hkdf.c.in
|
||||
GENERATE[providers/implementations/kdfs/kbkdf.c]=\
|
||||
providers/implementations/kdfs/kbkdf.c.in
|
||||
GENERATE[providers/implementations/kdfs/sshkdf.c]=\
|
||||
providers/implementations/kdfs/sshkdf.c.in
|
||||
GENERATE[providers/implementations/kdfs/sskdf.c]=\
|
||||
providers/implementations/kdfs/sskdf.c.in
|
||||
GENERATE[providers/implementations/kdfs/tls1_prf.c]=\
|
||||
|
|
Loading…
Reference in New Issue