summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortb <tb@openbsd.org>2019-01-29 10:17:56 +0000
committertb <tb@openbsd.org>2019-01-29 10:17:56 +0000
commitbfd3891171d680d38e50df781be8e3c58cb3df4a (patch)
tree0bde06732d9b07c2232d15c1bac96cc5cc8ff03b
parentTerminate NULL in argv. This fix is come from 1.31 from NetBSD (diff)
downloadwireguard-openbsd-bfd3891171d680d38e50df781be8e3c58cb3df4a.tar.xz
wireguard-openbsd-bfd3891171d680d38e50df781be8e3c58cb3df4a.zip
Remove SSLv23 padding mode from rsautl's usage (left behind in a removal
from code and manual in 2017). Reported by KEINOS in github issue #101.
-rw-r--r--usr.bin/openssl/rsautl.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/openssl/rsautl.c b/usr.bin/openssl/rsautl.c
index 1e420b391d7..65b10858b8f 100644
--- a/usr.bin/openssl/rsautl.c
+++ b/usr.bin/openssl/rsautl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rsautl.c,v 1.13 2018/02/07 05:47:55 jsing Exp $ */
+/* $OpenBSD: rsautl.c,v 1.14 2019/01/29 10:17:56 tb Exp $ */
/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
* project 2000.
*/
@@ -318,7 +318,6 @@ usage()
BIO_printf(bio_err, "-keyform arg private key format - default PEM\n");
BIO_printf(bio_err, "-pubin input is an RSA public\n");
BIO_printf(bio_err, "-certin input is a certificate carrying an RSA public key\n");
- BIO_printf(bio_err, "-ssl use SSL v2 padding\n");
BIO_printf(bio_err, "-raw use no padding\n");
BIO_printf(bio_err, "-pkcs use PKCS#1 v1.5 padding (default)\n");
BIO_printf(bio_err, "-oaep use PKCS#1 OAEP\n");