File tree 2 files changed +12
-1
lines changed
2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -534,6 +534,14 @@ <h3 id="minor_library_changes">Minor changes to the library</h3>
534
534
535
535
< dl id ="crypto/tls "> < dt > < a href ="/pkg/crypto/tls/ "> crypto/tls</ a > </ dt >
536
536
< dd >
537
+ < p >
538
+ Support for SSL version 3.0 (SSLv3) < a href ="https://golang.org/issue/32716 ">
539
+ is now deprecated and will be removed in Go 1.14</ a > . Note that SSLv3
540
+ < a href ="https://tools.ietf.org/html/rfc7568 "> is cryptographically
541
+ broken</ a > , is already disabled by default in < code > crypto/tls</ code > ,
542
+ and was never supported by Go clients.
543
+ </ p >
544
+
537
545
< p > <!-- CL 177698 -->
538
546
Ed25519 certificates are now supported in TLS versions 1.2 and 1.3.
539
547
</ p >
Original file line number Diff line number Diff line change @@ -23,11 +23,14 @@ import (
23
23
)
24
24
25
25
const (
26
- VersionSSL30 = 0x0300
27
26
VersionTLS10 = 0x0301
28
27
VersionTLS11 = 0x0302
29
28
VersionTLS12 = 0x0303
30
29
VersionTLS13 = 0x0304
30
+
31
+ // Deprecated: SSLv3 is cryptographically broken, and will be
32
+ // removed in Go 1.14. See golang.org/issue/32716.
33
+ VersionSSL30 = 0x0300
31
34
)
32
35
33
36
const (
You can’t perform that action at this time.
0 commit comments