2019-10-04 16:24:09 +08:00
|
|
|
# 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
|
|
|
|
$DSA_GOAL=../../libimplementations.a
|
2019-10-16 03:31:45 +08:00
|
|
|
$RSA_GOAL=../../libimplementations.a
|
2020-01-28 00:57:03 +08:00
|
|
|
$ECX_GOAL=../../libimplementations.a
|
2019-10-04 16:24:09 +08:00
|
|
|
|
|
|
|
IF[{- !$disabled{dh} -}]
|
|
|
|
SOURCE[$DH_GOAL]=dh_kmgmt.c
|
|
|
|
ENDIF
|
|
|
|
IF[{- !$disabled{dsa} -}]
|
|
|
|
SOURCE[$DSA_GOAL]=dsa_kmgmt.c
|
|
|
|
ENDIF
|
2019-10-16 03:31:45 +08:00
|
|
|
SOURCE[$RSA_GOAL]=rsa_kmgmt.c
|
2020-02-12 17:19:41 +08:00
|
|
|
IF[{- !$disabled{ec} -}]
|
|
|
|
SOURCE[$ECX_GOAL]=ecx_kmgmt.c
|
|
|
|
ENDIF
|