mirror of
https://github.com/openssl/openssl.git
synced 2024-12-09 05:51:54 +08:00
ac2d58c72b
Some KDF implementations were available before the current EVP_KDF API. They were used via EVP_PKEY_derive. There exists a bridge between the old API and the EVP_KDF API however this bridge itself uses a legacy EVP_PKEY_METHOD. This commit implements a provider side bridge without having to use any legacy code. Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/12573)
31 lines
806 B
Plaintext
31 lines
806 B
Plaintext
# We make separate GOAL variables for each algorithm, to make it easy to
|
|
# switch each to the Legacy provider when needed.
|
|
|
|
$DH_GOAL=../../libimplementations.a
|
|
$ECX_GOAL=../../libimplementations.a
|
|
$ECDH_GOAL=../../libimplementations.a
|
|
$KDF_GOAL=../../libimplementations.a
|
|
|
|
IF[{- !$disabled{dh} -}]
|
|
SOURCE[$DH_GOAL]=dh_exch.c
|
|
ENDIF
|
|
|
|
IF[{- !$disabled{asm} -}]
|
|
$ECDEF_s390x=S390X_EC_ASM
|
|
|
|
# Now that we have defined all the arch specific variables, use the
|
|
# appropriate one, and define the appropriate macros
|
|
IF[$ECASM_{- $target{asm_arch} -}]
|
|
$ECDEF=$ECDEF_{- $target{asm_arch} -}
|
|
ENDIF
|
|
ENDIF
|
|
|
|
IF[{- !$disabled{ec} -}]
|
|
SOURCE[$ECX_GOAL]=ecx_exch.c
|
|
DEFINE[$ECX_GOAL]=$ECDEF
|
|
SOURCE[../../libfips.a]=ecdh_exch.c
|
|
SOURCE[../../libnonfips.a]=ecdh_exch.c
|
|
ENDIF
|
|
|
|
SOURCE[$KDF_GOAL]=kdf_exch.c
|