mirror of
https://github.com/openssl/openssl.git
synced 2025-02-23 14:42:15 +08:00
Downgrading EVP_PKEYs from containing provider side internal keys to containing legacy keys demands support in the EVP_PKEY_ASN1_METHOD. This became a bit elaborate because the code would be almost exactly the same as the import functions int EVP_KEYMGMT. Therefore, we end up moving most of the code to common backend support files that can be used both by legacy backend code and by our providers. Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11375)
11 lines
319 B
Plaintext
11 lines
319 B
Plaintext
LIBS=../../libcrypto
|
|
|
|
$COMMON=dsa_sign.c dsa_vrf.c dsa_lib.c dsa_ossl.c dsa_aid.c dsa_check.c \
|
|
dsa_key.c dsa_backend.c
|
|
|
|
SOURCE[../../libcrypto]=$COMMON\
|
|
dsa_gen.c dsa_asn1.c \
|
|
dsa_err.c dsa_depr.c dsa_ameth.c dsa_pmeth.c dsa_prn.c \
|
|
dsa_meth.c
|
|
SOURCE[../../providers/libfips.a]=$COMMON
|