diff options
author | Richard Levitte <levitte@openssl.org> | 2020-05-26 10:05:01 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2020-05-27 12:42:20 +0200 |
commit | f7f53d7d61bba235b8babf4cf580114d74183e3e (patch) | |
tree | d282c6aec62e24f1d4bf6d7399d2afa2049a9623 /include | |
parent | doc: fix trace category names (diff) | |
download | openssl-f7f53d7d61bba235b8babf4cf580114d74183e3e.tar.xz openssl-f7f53d7d61bba235b8babf4cf580114d74183e3e.zip |
PROV: Use rsa_padding_add_PKCS1_OAEP_mgf1_with_libctx() in RSA-OAEP
Fixes #11904
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/11959)
Diffstat (limited to 'include')
-rw-r--r-- | include/crypto/rsa.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/crypto/rsa.h b/include/crypto/rsa.h index 6f32ec422f..5d7a6e515d 100644 --- a/include/crypto/rsa.h +++ b/include/crypto/rsa.h @@ -69,6 +69,13 @@ int rsa_padding_check_PKCS1_type_2_TLS(OPENSSL_CTX *ctx, unsigned char *to, size_t tlen, const unsigned char *from, size_t flen, int client_version, int alt_version); +int rsa_padding_add_PKCS1_OAEP_mgf1_with_libctx(OPENSSL_CTX *libctx, + unsigned char *to, int tlen, + const unsigned char *from, + int flen, + const unsigned char *param, + int plen, const EVP_MD *md, + const EVP_MD *mgf1md); int rsa_validate_public(const RSA *key); int rsa_validate_private(const RSA *key); |