mirror of
https://github.com/openssl/openssl.git
synced 2025-02-05 14:10:53 +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
445 B
Plaintext
11 lines
445 B
Plaintext
LIBS=../../libcrypto
|
|
|
|
$COMMON=rsa_ossl.c rsa_gen.c rsa_lib.c rsa_sign.c rsa_aid.c rsa_pk1.c \
|
|
rsa_none.c rsa_oaep.c rsa_chk.c rsa_pss.c rsa_x931.c rsa_crpt.c \
|
|
rsa_x931g.c rsa_sp800_56b_gen.c rsa_sp800_56b_check.c rsa_backend.c
|
|
|
|
SOURCE[../../libcrypto]=$COMMON\
|
|
rsa_saos.c rsa_err.c rsa_asn1.c rsa_depr.c rsa_ameth.c rsa_prn.c \
|
|
rsa_pmeth.c rsa_meth.c rsa_mp.c rsa_ssl.c
|
|
SOURCE[../../providers/libfips.a]=$COMMON
|