diff options
author | Richard Levitte <levitte@openssl.org> | 2020-05-02 12:41:39 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2020-05-14 12:16:34 +0200 |
commit | e9d6186e0507fb814310c5230293ff62310c5f9d (patch) | |
tree | 545cbcef533697123473de5d3b4bb23ef2570194 /crypto/rsa/build.info | |
parent | RSA: Extract much of the rsa_pkey_export_to() code to a separate function (diff) | |
download | openssl-e9d6186e0507fb814310c5230293ff62310c5f9d.tar.xz openssl-e9d6186e0507fb814310c5230293ff62310c5f9d.zip |
RSA: Add rsa_schemes.c, to store scheme data and translator functions
The scheme currently added is OAEP-PSSDigestAlgorithms codified.
The translator functions translate an EVP_MD into a NID, and a NID
into a name, to support the creation and parsing of OSSL_PARAM items.
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/11710)
Diffstat (limited to 'crypto/rsa/build.info')
-rw-r--r-- | crypto/rsa/build.info | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/rsa/build.info b/crypto/rsa/build.info index 970c493560..984ad775d5 100644 --- a/crypto/rsa/build.info +++ b/crypto/rsa/build.info @@ -3,7 +3,7 @@ LIBS=../../libcrypto $COMMON=rsa_ossl.c rsa_gen.c rsa_lib.c rsa_sign.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 \ - rsa_mp_names.c + rsa_mp_names.c rsa_schemes.c SOURCE[../../libcrypto]=$COMMON\ rsa_saos.c rsa_err.c rsa_asn1.c rsa_ameth.c rsa_prn.c \ |