Blame SOURCES/openssl-1.0.2k-no-ssl2.patch

450916
diff -up openssl-1.0.2k/apps/ciphers.c.no-ssl2 openssl-1.0.2k/apps/ciphers.c
450916
--- openssl-1.0.2k/apps/ciphers.c.no-ssl2	2017-01-26 14:22:03.000000000 +0100
450916
+++ openssl-1.0.2k/apps/ciphers.c	2017-03-01 14:18:28.058046372 +0100
450916
@@ -73,7 +73,9 @@ static const char *ciphers_usage[] = {
450916
     "usage: ciphers args\n",
450916
     " -v          - verbose mode, a textual listing of the SSL/TLS ciphers in OpenSSL\n",
450916
     " -V          - even more verbose\n",
450916
+#ifndef OPENSSL_NO_SSL2
450916
     " -ssl2       - SSL2 mode\n",
450916
+#endif
450916
     " -ssl3       - SSL3 mode\n",
450916
     " -tls1       - TLS1 mode\n",
450916
     NULL
450916
diff -up openssl-1.0.2k/apps/s_client.c.no-ssl2 openssl-1.0.2k/apps/s_client.c
450916
--- openssl-1.0.2k/apps/s_client.c.no-ssl2	2017-03-01 14:04:57.000000000 +0100
450916
+++ openssl-1.0.2k/apps/s_client.c	2017-03-01 14:17:42.368974209 +0100
450916
@@ -380,7 +380,9 @@ static void sc_usage(void)
450916
                " -srp_strength int - minimal length in bits for N (default %d).\n",
450916
                SRP_MINIMAL_N);
450916
 #endif
450916
+#ifndef OPENSSL_NO_SSL2
450916
     BIO_printf(bio_err, " -ssl2         - just use SSLv2\n");
450916
+#endif
450916
 #ifndef OPENSSL_NO_SSL3_METHOD
450916
     BIO_printf(bio_err, " -ssl3         - just use SSLv3\n");
450916
 #endif
450916
diff -up openssl-1.0.2k/apps/s_server.c.no-ssl2 openssl-1.0.2k/apps/s_server.c
450916
--- openssl-1.0.2k/apps/s_server.c.no-ssl2	2017-02-15 11:33:38.000000000 +0100
450916
+++ openssl-1.0.2k/apps/s_server.c	2017-03-01 14:13:54.154618822 +0100
450916
@@ -598,7 +598,9 @@ static void sv_usage(void)
450916
     BIO_printf(bio_err,
450916
                " -srpuserseed string - A seed string for a default user salt.\n");
450916
 #endif
450916
+#ifndef OPENSSL_NO_SSL2
450916
     BIO_printf(bio_err, " -ssl2         - Just talk SSLv2\n");
450916
+#endif
450916
 #ifndef OPENSSL_NO_SSL3_METHOD
450916
     BIO_printf(bio_err, " -ssl3         - Just talk SSLv3\n");
450916
 #endif
450916
@@ -610,7 +612,7 @@ static void sv_usage(void)
450916
     BIO_printf(bio_err, " -timeout      - Enable timeouts\n");
450916
     BIO_printf(bio_err, " -mtu          - Set link layer MTU\n");
450916
     BIO_printf(bio_err, " -chain        - Read a certificate chain\n");
450916
-    BIO_printf(bio_err, " -no_ssl2      - Just disable SSLv2\n");
450916
+    BIO_printf(bio_err, " -no_ssl2      - No-op, SSLv2 is always disabled\n");
450916
     BIO_printf(bio_err, " -no_ssl3      - Just disable SSLv3\n");
450916
     BIO_printf(bio_err, " -no_tls1      - Just disable TLSv1\n");
450916
     BIO_printf(bio_err, " -no_tls1_1    - Just disable TLSv1.1\n");
450916
diff -up openssl-1.0.2k/apps/s_time.c.no-ssl2 openssl-1.0.2k/apps/s_time.c
450916
--- openssl-1.0.2k/apps/s_time.c.no-ssl2	2017-02-15 11:33:38.000000000 +0100
450916
+++ openssl-1.0.2k/apps/s_time.c	2017-03-01 14:20:15.708572549 +0100
450916
@@ -191,7 +191,9 @@ static void s_time_usage(void)
450916
            SSL_CONNECT_NAME);
450916
 #ifdef FIONBIO
450916
     printf("-nbio         - Run with non-blocking IO\n");
450916
+#ifndef OPENSSL_NO_SSL2
450916
     printf("-ssl2         - Just use SSLv2\n");
450916
+#endif
450916
     printf("-ssl3         - Just use SSLv3\n");
450916
     printf("-bugs         - Turn on SSL bug compatibility\n");
450916
     printf("-new          - Just time new connections\n");
450916
diff -up openssl-1.0.2k/doc/apps/ciphers.pod.no-ssl2 openssl-1.0.2k/doc/apps/ciphers.pod
450916
--- openssl-1.0.2k/doc/apps/ciphers.pod.no-ssl2	2017-01-26 14:22:04.000000000 +0100
450916
+++ openssl-1.0.2k/doc/apps/ciphers.pod	2017-03-01 14:02:51.275041593 +0100
450916
@@ -9,7 +9,6 @@ ciphers - SSL cipher display and cipher
450916
 B<openssl> B<ciphers>
450916
 [B<-v>]
450916
 [B<-V>]
450916
-[B<-ssl2>]
450916
 [B<-ssl3>]
450916
 [B<-tls1>]
450916
 [B<cipherlist>]
450916
@@ -42,10 +41,6 @@ Like B<-v>, but include cipher suite cod
450916
 
450916
 This lists ciphers compatible with any of SSLv3, TLSv1, TLSv1.1 or TLSv1.2.
450916
 
450916
-=item B<-ssl2>
450916
-
450916
-Only include SSLv2 ciphers.
450916
-
450916
 =item B<-h>, B<-?>
450916
 
450916
 Print a brief usage message.
450916
diff -up openssl-1.0.2k/doc/apps/s_client.pod.no-ssl2 openssl-1.0.2k/doc/apps/s_client.pod
450916
--- openssl-1.0.2k/doc/apps/s_client.pod.no-ssl2	2017-03-01 14:04:57.000000000 +0100
450916
+++ openssl-1.0.2k/doc/apps/s_client.pod	2017-03-01 14:06:28.389146669 +0100
450916
@@ -33,13 +33,11 @@ B<openssl> B<s_client>
450916
 [B<-ign_eof>]
450916
 [B<-no_ign_eof>]
450916
 [B<-quiet>]
450916
-[B<-ssl2>]
450916
 [B<-ssl3>]
450916
 [B<-tls1>]
450916
 [B<-tls1_1>]
450916
 [B<-tls1_2>]
450916
 [B<-dtls1>]
450916
-[B<-no_ssl2>]
450916
 [B<-no_ssl3>]
450916
 [B<-no_tls1>]
450916
 [B<-no_tls1_1>]
450916
@@ -207,7 +205,7 @@ Use the PSK key B<key> when using a PSK
450916
 given as a hexadecimal number without leading 0x, for example -psk
450916
 1a2b3c4d.
450916
 
450916
-=item B<-ssl2>, B<-ssl3>, B<-tls1>, B<-tls1_1>, B<-tls1_2>, B<-dtls1>, B<-no_ssl2>, B<-no_ssl3>, B<-no_tls1>, B<-no_tls1_1>, B<-no_tls1_2>
450916
+=item B<-ssl3>, B<-tls1>, B<-tls1_1>, B<-tls1_2>, B<-dtls1>, B<-no_ssl3>, B<-no_tls1>, B<-no_tls1_1>, B<-no_tls1_2>
450916
 
450916
 These options require or disable the use of the specified SSL or TLS protocols.
450916
 By default the initial handshake uses a I<version-flexible> method which will
450916
@@ -326,8 +324,8 @@ would typically be used (https uses port
450916
 then an HTTP command can be given such as "GET /" to retrieve a web page.
450916
 
450916
 If the handshake fails then there are several possible causes, if it is
450916
-nothing obvious like no client certificate then the B<-bugs>, B<-ssl2>,
450916
-B<-ssl3>, B<-tls1>, B<-no_ssl2>, B<-no_ssl3>, B<-no_tls1> options can be tried
450916
+nothing obvious like no client certificate then the B<-bugs>,
450916
+B<-ssl3>, B<-tls1>, B<-no_ssl3>, B<-no_tls1> options can be tried
450916
 in case it is a buggy server. In particular you should play with these
450916
 options B<before> submitting a bug report to an OpenSSL mailing list.
450916
 
450916
@@ -349,10 +347,6 @@ on the command line is no guarantee that
450916
 If there are problems verifying a server certificate then the
450916
 B<-showcerts> option can be used to show the whole chain.
450916
 
450916
-Since the SSLv23 client hello cannot include compression methods or extensions
450916
-these will only be supported if its use is disabled, for example by using the
450916
-B<-no_sslv2> option.
450916
-
450916
 The B<s_client> utility is a test tool and is designed to continue the
450916
 handshake after any certificate verification errors. As a result it will
450916
 accept any certificate chain (trusted or not) sent by the peer. None test
450916
diff -up openssl-1.0.2k/doc/apps/s_server.pod.no-ssl2 openssl-1.0.2k/doc/apps/s_server.pod
450916
--- openssl-1.0.2k/doc/apps/s_server.pod.no-ssl2	2017-03-01 14:04:57.000000000 +0100
450916
+++ openssl-1.0.2k/doc/apps/s_server.pod	2017-03-01 14:04:17.871077754 +0100
450916
@@ -42,12 +42,10 @@ B<openssl> B<s_server>
450916
 [B<-keytab filename>]
450916
 [B<-quiet>]
450916
 [B<-no_tmp_rsa>]
450916
-[B<-ssl2>]
450916
 [B<-ssl3>]
450916
 [B<-tls1>]
450916
 [B<-tls1_1>]
450916
 [B<-tls1_2>]
450916
-[B<-no_ssl2>]
450916
 [B<-no_ssl3>]
450916
 [B<-no_tls1>]
450916
 [B<-no_dhe>]
450916
@@ -229,7 +227,7 @@ Use the PSK key B<key> when using a PSK
450916
 given as a hexadecimal number without leading 0x, for example -psk
450916
 1a2b3c4d.
450916
 
450916
-=item B<-ssl2>, B<-ssl3>, B<-tls1>, B<-tls1_1>, B<-tls1_2>, B<-dtls1>, B<-no_ssl2>, B<-no_ssl3>, B<-no_tls1>, B<-no_tls1_1>, B<-no_tls1_2>
450916
+=item B<-ssl3>, B<-tls1>, B<-tls1_1>, B<-tls1_2>, B<-dtls1>, B<-no_ssl3>, B<-no_tls1>, B<-no_tls1_1>, B<-no_tls1_2>
450916
 
450916
 These options require or disable the use of the specified SSL or TLS protocols.
450916
 By default the initial handshake uses a I<version-flexible> method which will
450916
diff -up openssl-1.0.2k/doc/apps/s_time.pod.no-ssl2 openssl-1.0.2k/doc/apps/s_time.pod
450916
--- openssl-1.0.2k/doc/apps/s_time.pod.no-ssl2	2017-02-15 11:33:38.000000000 +0100
450916
+++ openssl-1.0.2k/doc/apps/s_time.pod	2017-03-01 14:03:50.440432769 +0100
450916
@@ -20,7 +20,6 @@ B<openssl> B<s_time>
450916
 [B<-verify depth>]
450916
 [B<-nbio>]
450916
 [B<-time seconds>]
450916
-[B<-ssl2>]
450916
 [B<-ssl3>]
450916
 [B<-bugs>]
450916
 [B<-cipher cipherlist>]
450916
@@ -99,9 +98,9 @@ specified, they are both on by default a
450916
 
450916
 turns on non-blocking I/O.
450916
 
450916
-=item B<-ssl2>, B<-ssl3>
450916
+=item B<-ssl3>
450916
 
450916
-these options disable the use of certain SSL or TLS protocols. By default
450916
+this option disables the use of certain SSL or TLS protocols. By default
450916
 the initial handshake uses a method which should be compatible with all
450916
 servers and permit them to use SSL v3, SSL v2 or TLS as appropriate.
450916
 The timing program is not as rich in options to turn protocols on and off as
450916
@@ -109,8 +108,7 @@ the L<s_client(1)|s_client(1)> program a
450916
 
450916
 Unfortunately there are a lot of ancient and broken servers in use which
450916
 cannot handle this technique and will fail to connect. Some servers only
450916
-work if TLS is turned off with the B<-ssl3> option; others
450916
-will only support SSL v2 and may need the B<-ssl2> option.
450916
+work if TLS is turned off with the B<-ssl3> option.
450916
 
450916
 =item B<-bugs>
450916
 
450916
@@ -144,7 +142,7 @@ which both client and server can agree,
450916
 for details.
450916
 
450916
 If the handshake fails then there are several possible causes, if it is
450916
-nothing obvious like no client certificate then the B<-bugs>, B<-ssl2>,
450916
+nothing obvious like no client certificate then the B<-bugs>,
450916
 B<-ssl3> options can be tried
450916
 in case it is a buggy server. In particular you should play with these
450916
 options B<before> submitting a bug report to an OpenSSL mailing list.
450916
diff -up openssl-1.0.2k/doc/ssl/SSL_CTX_new.pod.no-ssl2 openssl-1.0.2k/doc/ssl/SSL_CTX_new.pod
450916
--- openssl-1.0.2k/doc/ssl/SSL_CTX_new.pod.no-ssl2	2017-01-26 14:22:04.000000000 +0100
450916
+++ openssl-1.0.2k/doc/ssl/SSL_CTX_new.pod	2017-03-01 14:09:12.981016773 +0100
450916
@@ -123,13 +123,8 @@ used.
450916
 
450916
 =item SSLv2_method(), SSLv2_server_method(), SSLv2_client_method()
450916
 
450916
-A TLS/SSL connection established with these methods will only understand the
450916
-SSLv2 protocol.  A client will send out SSLv2 client hello messages and will
450916
-also indicate that it only understand SSLv2.  A server will only understand
450916
-SSLv2 client hello messages.  The SSLv2 protocol offers little to no security
450916
-and should not be used.
450916
-As of OpenSSL 1.0.2g, EXPORT ciphers and 56-bit DES are no longer available
450916
-with SSLv2.
450916
+These calls are provided only as stubs for keeping ABI compatibility. There
450916
+is no support for SSLv2 built in the library.
450916
 
450916
 =item DTLS_method(), DTLS_server_method(), DTLS_client_method()
450916