diff options
author | 2017-08-28 17:41:59 +0000 | |
---|---|---|
committer | 2017-08-28 17:41:59 +0000 | |
commit | e60f121cde2cf72092a917d9a75ccd9bc78ea5d7 (patch) | |
tree | 81717b082188b7cd579adf560e83559a13e65da8 /lib/libcrypto/rsa/rsa_pmeth.c | |
parent | Define OPENSSL_NO_NEXTPROTONEG since there is no longer any NPN. (diff) | |
download | wireguard-openbsd-e60f121cde2cf72092a917d9a75ccd9bc78ea5d7.tar.xz wireguard-openbsd-e60f121cde2cf72092a917d9a75ccd9bc78ea5d7.zip |
Remove RSA_padding_add_SSLv23()/RSA_padding_check_SSLv23() and related
code. We removed SSLv2/SSLv3 a long time ago...
Discussed with doug@
Diffstat (limited to 'lib/libcrypto/rsa/rsa_pmeth.c')
-rw-r--r-- | lib/libcrypto/rsa/rsa_pmeth.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libcrypto/rsa/rsa_pmeth.c b/lib/libcrypto/rsa/rsa_pmeth.c index 2ef1f3c64ad..b4a4e730c01 100644 --- a/lib/libcrypto/rsa/rsa_pmeth.c +++ b/lib/libcrypto/rsa/rsa_pmeth.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rsa_pmeth.c,v 1.19 2017/01/29 17:49:23 beck Exp $ */ +/* $OpenBSD: rsa_pmeth.c,v 1.20 2017/08/28 17:41:59 jsing Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 2006. */ @@ -466,8 +466,6 @@ pkey_rsa_ctrl_str(EVP_PKEY_CTX *ctx, const char *type, const char *value) int pm; if (!strcmp(value, "pkcs1")) pm = RSA_PKCS1_PADDING; - else if (!strcmp(value, "sslv23")) - pm = RSA_SSLV23_PADDING; else if (!strcmp(value, "none")) pm = RSA_NO_PADDING; else if (!strcmp(value, "oeap")) |