mirror of
https://github.com/openssl/openssl.git
synced 2024-12-27 06:21:43 +08:00
2ef9a7ac5e
We reuse concepts such as PROV_CIPHER, and make use of some common code in provider_util.c Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/12637)
26 lines
680 B
Plaintext
26 lines
680 B
Plaintext
# We make separate GOAL variables for each algorithm, to make it easy to
|
|
# switch each to the Legacy provider when needed.
|
|
|
|
$DSA_GOAL=../../libimplementations.a
|
|
$EC_GOAL=../../libimplementations.a
|
|
|
|
IF[{- !$disabled{dsa} -}]
|
|
SOURCE[$DSA_GOAL]=dsa.c
|
|
ENDIF
|
|
|
|
IF[{- !$disabled{ec} -}]
|
|
SOURCE[$EC_GOAL]=eddsa.c
|
|
SOURCE[../../libfips.a]=ecdsa.c
|
|
SOURCE[../../libnonfips.a]=ecdsa.c
|
|
ENDIF
|
|
|
|
SOURCE[../../libfips.a]=rsa.c
|
|
SOURCE[../../libnonfips.a]=rsa.c
|
|
|
|
DEPEND[rsa.o]=../../common/include/prov/der_rsa.h
|
|
DEPEND[dsa.o]=../../common/include/prov/der_dsa.h
|
|
DEPEND[ecdsa.o]=../../common/include/prov/der_ec.h
|
|
|
|
SOURCE[../../libfips.a]=mac_legacy.c
|
|
SOURCE[../../libnonfips.a]=mac_legacy.c
|