We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6519aa9 commit fc0049fCopy full SHA for fc0049f
src/crypto/tls/tls.go
@@ -4,6 +4,15 @@
4
5
// Package tls partially implements TLS 1.2, as specified in RFC 5246,
6
// and TLS 1.3, as specified in RFC 8446.
7
+//
8
+// # FIPS 140-3 mode
9
10
+// When the program is in [FIPS 140-3 mode], this package behaves as if
11
+// only protocol versions, cipher suites, signature algorithms, and
12
+// key exchange algorithms approved by NIST SP 800-52r2 are implemented.
13
+// Others are silently ignored and not negotiated.
14
15
+// [FIPS 140-3 mode]: https://go.dev/doc/security/fips140
16
package tls
17
18
// BUG(agl): The crypto/tls package only implements some countermeasures
0 commit comments