svn commit: r361392 - head/secure/lib/libcrypto

Gordon Tetlow gordon at FreeBSD.org
Fri May 22 16:53:40 UTC 2020


Author: gordon
Date: Fri May 22 16:53:39 2020
New Revision: 361392
URL: https://svnweb.freebsd.org/changeset/base/361392

Log:
  Remove support for SSLv3 from the OpenSSL build.
  
  This is the default configuration in OpenSSL 1.1.1 already. This moves
  to align with that default.
  
  Reported by:	jmg
  Approved by:	jkim, cem, emaste, philip
  Differential Revision:	https://reviews.freebsd.org/D24945

Modified:
  head/secure/lib/libcrypto/opensslconf.h.in

Modified: head/secure/lib/libcrypto/opensslconf.h.in
==============================================================================
--- head/secure/lib/libcrypto/opensslconf.h.in	Fri May 22 16:51:00 2020	(r361391)
+++ head/secure/lib/libcrypto/opensslconf.h.in	Fri May 22 16:53:39 2020	(r361392)
@@ -76,6 +76,12 @@ extern "C" {
 #ifndef OPENSSL_NO_SSL_TRACE
 # define OPENSSL_NO_SSL_TRACE
 #endif
+#ifndef OPENSSL_NO_SSL3
+# define OPENSSL_NO_SSL3
+#endif
+#ifndef OPENSSL_NO_SSL3_METHOD
+# define OPENSSL_NO_SSL3_METHOD
+#endif
 #ifndef OPENSSL_NO_UBSAN
 # define OPENSSL_NO_UBSAN
 #endif


More information about the svn-src-all mailing list