diff options
author | Rich Salz <rsalz@akamai.com> | 2021-02-22 18:55:25 +0100 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2021-03-01 10:56:12 +0100 |
commit | b0aae913246af1d07e728d24f53f55028f61c696 (patch) | |
tree | 472478434dd9894a817e00d4eb56dd8197cc717a /providers/implementations/asymciphers | |
parent | Generalize schmeme parsing of OSSL_HTTP_parse_url() to OSSL_parse_url() (diff) | |
download | openssl-b0aae913246af1d07e728d24f53f55028f61c696.tar.xz openssl-b0aae913246af1d07e728d24f53f55028f61c696.zip |
Remove RSA SSLv23 padding mode
Reviewed-by: Kurt Roeckx <kurt@roeckx.be>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14248)
Diffstat (limited to 'providers/implementations/asymciphers')
-rw-r--r-- | providers/implementations/asymciphers/rsa_enc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/providers/implementations/asymciphers/rsa_enc.c b/providers/implementations/asymciphers/rsa_enc.c index 461dee8c6d..5484c3d54a 100644 --- a/providers/implementations/asymciphers/rsa_enc.c +++ b/providers/implementations/asymciphers/rsa_enc.c @@ -47,7 +47,6 @@ static OSSL_FUNC_asym_cipher_settable_ctx_params_fn rsa_settable_ctx_params; static OSSL_ITEM padding_item[] = { { RSA_PKCS1_PADDING, OSSL_PKEY_RSA_PAD_MODE_PKCSV15 }, - { RSA_SSLV23_PADDING, OSSL_PKEY_RSA_PAD_MODE_SSLV23 }, { RSA_NO_PADDING, OSSL_PKEY_RSA_PAD_MODE_NONE }, { RSA_PKCS1_OAEP_PADDING, OSSL_PKEY_RSA_PAD_MODE_OAEP }, /* Correct spelling first */ { RSA_PKCS1_OAEP_PADDING, "oeap" }, |