components/erlang/patches/disable-sslv3.patch
author Danek Duvall <danek.duvall@oracle.com>
Tue, 18 Oct 2016 14:50:56 -0700
changeset 7124 3e0b5da5d4d1
parent 4164 78ce887dcfd6
permissions -rw-r--r--
24914209 runtime version-specific test results directories get removed inappropriately
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3581
ac4a2e93e035 20231085 problem in UTILITY/ERLANG
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     1
Disable SSLv3 as a default SSL/TLS version in erlang per the email thread at:
ac4a2e93e035 20231085 problem in UTILITY/ERLANG
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     2
http://erlang.org/pipermail/erlang-questions/2014-October/081394.html
ac4a2e93e035 20231085 problem in UTILITY/ERLANG
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     3
ac4a2e93e035 20231085 problem in UTILITY/ERLANG
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     4
This change is already known upstream.
ac4a2e93e035 20231085 problem in UTILITY/ERLANG
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     5
4164
78ce887dcfd6 20785395 problem in UTILITY/ERLANG
Rich Burridge <rich.burridge@oracle.com>
parents: 3581
diff changeset
     6
--- otp_src_17.5/lib/ssl/src/ssl_internal.hrl.orig	2015-04-01 17:25:29.828347756 -0700
78ce887dcfd6 20785395 problem in UTILITY/ERLANG
Rich Burridge <rich.burridge@oracle.com>
parents: 3581
diff changeset
     7
+++ otp_src_17.5/lib/ssl/src/ssl_internal.hrl	2015-04-01 17:29:15.577854889 -0700
78ce887dcfd6 20785395 problem in UTILITY/ERLANG
Rich Burridge <rich.burridge@oracle.com>
parents: 3581
diff changeset
     8
@@ -67,8 +67,8 @@
3581
ac4a2e93e035 20231085 problem in UTILITY/ERLANG
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     9
 -define(TRUE, 0).
ac4a2e93e035 20231085 problem in UTILITY/ERLANG
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    10
 -define(FALSE, 1).
ac4a2e93e035 20231085 problem in UTILITY/ERLANG
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    11
 
4164
78ce887dcfd6 20785395 problem in UTILITY/ERLANG
Rich Burridge <rich.burridge@oracle.com>
parents: 3581
diff changeset
    12
--define(ALL_SUPPORTED_VERSIONS, ['tlsv1.2', 'tlsv1.1', tlsv1, sslv3]).
78ce887dcfd6 20785395 problem in UTILITY/ERLANG
Rich Burridge <rich.burridge@oracle.com>
parents: 3581
diff changeset
    13
--define(MIN_SUPPORTED_VERSIONS, ['tlsv1.1', tlsv1, sslv3]).
78ce887dcfd6 20785395 problem in UTILITY/ERLANG
Rich Burridge <rich.burridge@oracle.com>
parents: 3581
diff changeset
    14
+-define(ALL_SUPPORTED_VERSIONS, ['tlsv1.2', 'tlsv1.1', tlsv1]).
78ce887dcfd6 20785395 problem in UTILITY/ERLANG
Rich Burridge <rich.burridge@oracle.com>
parents: 3581
diff changeset
    15
+-define(MIN_SUPPORTED_VERSIONS, ['tlsv1.1', tlsv1]).
78ce887dcfd6 20785395 problem in UTILITY/ERLANG
Rich Burridge <rich.burridge@oracle.com>
parents: 3581
diff changeset
    16
 -define(ALL_DATAGRAM_SUPPORTED_VERSIONS, ['dtlsv1.2', dtlsv1]).
78ce887dcfd6 20785395 problem in UTILITY/ERLANG
Rich Burridge <rich.burridge@oracle.com>
parents: 3581
diff changeset
    17
 -define(MIN_DATAGRAM_SUPPORTED_VERSIONS, ['dtlsv1.2', dtlsv1]).
3581
ac4a2e93e035 20231085 problem in UTILITY/ERLANG
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    18