mirror of
https://github.com/openssl/openssl.git
synced 2024-12-27 06:21:43 +08:00
ece9304c96
Fixes #12455 Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/12660)
36 lines
1.2 KiB
Plaintext
36 lines
1.2 KiB
Plaintext
# We make separate GOAL variables for each algorithm, to make it easy to
|
|
# switch each to the Legacy provider when needed.
|
|
|
|
$ENCODER_GOAL=../../libimplementations.a
|
|
$DECODER_GOAL=../../libimplementations.a
|
|
$RSA_GOAL=../../libimplementations.a
|
|
$FFC_GOAL=../../libimplementations.a
|
|
$DH_GOAL=../../libimplementations.a
|
|
$DSA_GOAL=../../libimplementations.a
|
|
$ECX_GOAL=../../libimplementations.a
|
|
$EC_GOAL=../../libimplementations.a
|
|
|
|
SOURCE[$ENCODER_GOAL]=encoder_common.c decode_common.c
|
|
|
|
SOURCE[$DECODER_GOAL]=decode_der2key.c decode_pem2der.c
|
|
IF[{- !$disabled{dsa} -}]
|
|
SOURCE[$DECODER_GOAL]=decode_ms2key.c
|
|
ENDIF
|
|
|
|
SOURCE[$RSA_GOAL]=encoder_rsa.c encoder_rsa_priv.c encoder_rsa_pub.c
|
|
DEPEND[encoder_rsa.o]=../../common/include/prov/der_rsa.h
|
|
|
|
IF[{- !$disabled{"dh"} || !$disabled{"dsa"} -}]
|
|
SOURCE[$FFC_GOAL]=encoder_ffc_params.c
|
|
ENDIF
|
|
IF[{- !$disabled{dh} -}]
|
|
SOURCE[$DH_GOAL]=encoder_dh.c encoder_dh_priv.c encoder_dh_pub.c encoder_dh_param.c
|
|
ENDIF
|
|
IF[{- !$disabled{dsa} -}]
|
|
SOURCE[$DSA_GOAL]=encoder_dsa.c encoder_dsa_priv.c encoder_dsa_pub.c encoder_dsa_param.c
|
|
ENDIF
|
|
IF[{- !$disabled{ec} -}]
|
|
SOURCE[$ECX_GOAL]=encoder_ecx.c encoder_ecx_priv.c encoder_ecx_pub.c
|
|
SOURCE[$EC_GOAL]=encoder_ec.c encoder_ec_priv.c encoder_ec_pub.c encoder_ec_param.c
|
|
ENDIF
|