mirror of
https://github.com/golang/go
synced 2024-11-19 13:04:45 -07:00
crypto/tls: document that the cipher suite list is non-exhaustive.
Fixes #14370. Change-Id: Ieb95ee3494f592fb5fc74aa4b803479671816927 Reviewed-on: https://go-review.googlesource.com/20551 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
parent
ec158cebd9
commit
055dcb7566
@ -261,8 +261,10 @@ func mutualCipherSuite(have []uint16, want uint16) *cipherSuite {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// A list of the possible cipher suite ids. Taken from
|
// A list of cipher suite IDs that are, or have been, implemented by this
|
||||||
// http://www.iana.org/assignments/tls-parameters/tls-parameters.xml
|
// package.
|
||||||
|
//
|
||||||
|
// Taken from http://www.iana.org/assignments/tls-parameters/tls-parameters.xml
|
||||||
const (
|
const (
|
||||||
TLS_RSA_WITH_RC4_128_SHA uint16 = 0x0005
|
TLS_RSA_WITH_RC4_128_SHA uint16 = 0x0005
|
||||||
TLS_RSA_WITH_3DES_EDE_CBC_SHA uint16 = 0x000a
|
TLS_RSA_WITH_3DES_EDE_CBC_SHA uint16 = 0x000a
|
||||||
|
Loading…
Reference in New Issue
Block a user