mirror of
https://github.com/openssl/openssl.git
synced 2025-02-23 14:42:15 +08:00
This replaces crypto/ec/ecdsa_aid.c with new code and generated OIDs Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11450)
23 lines
600 B
Plaintext
23 lines
600 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
|
|
$ECDSA_GOAL=../../libimplementations.a
|
|
|
|
IF[{- !$disabled{dsa} -}]
|
|
SOURCE[$DSA_GOAL]=dsa.c
|
|
ENDIF
|
|
|
|
IF[{- !$disabled{ec} -}]
|
|
SOURCE[$EC_GOAL]=eddsa.c
|
|
SOURCE[$ECDSA_GOAL]=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
|