mirror of
https://github.com/openssl/openssl.git
synced 2025-02-05 14:10:53 +08:00
Similiar to ecdh this supports the legacy kdf inside the provider dh key exchange. The supporting EVP_PKEY_CTX macros have been changed into mehtods and moved into dh_ctrl.c New kdfs such as SSKDF should be done as a seperate pass after doing the derive. Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/12575)
14 lines
379 B
Plaintext
14 lines
379 B
Plaintext
LIBS=../../libcrypto
|
|
|
|
$COMMON=dh_lib.c dh_key.c dh_group_params.c dh_check.c dh_backend.c dh_gen.c \
|
|
dh_kdf.c
|
|
|
|
SOURCE[../../libcrypto]=$COMMON\
|
|
dh_asn1.c dh_err.c \
|
|
dh_ameth.c dh_pmeth.c dh_prn.c dh_rfc5114.c dh_meth.c dh_ctrl.c
|
|
IF[{- !$disabled{'deprecated-0.9.8'} -}]
|
|
SOURCE[../../libcrypto]=dh_depr.c
|
|
ENDIF
|
|
|
|
SOURCE[../../providers/libfips.a]=$COMMON
|