mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 20:47:36 +03:00
[dev.boringcrypto] all: merge master into dev.boringcrypto
Change-Id: Ic1d89215bb3e37a722d3d3bc7698edea940a83d9
This commit is contained in:
commit
29b7a28e8c
41 changed files with 1739 additions and 1712 deletions
15
common.go
15
common.go
|
@ -187,6 +187,21 @@ var defaultSupportedSignatureAlgorithms = []SignatureScheme{
|
|||
ECDSAWithSHA1,
|
||||
}
|
||||
|
||||
// defaultSupportedSignatureAlgorithmsTLS12 contains the signature and hash algorithms
|
||||
// that are supported in TLS 1.2, where it is possible to distinguish the
|
||||
// protocol version. This is temporary, see Issue 32425.
|
||||
var defaultSupportedSignatureAlgorithmsTLS12 = []SignatureScheme{
|
||||
PKCS1WithSHA256,
|
||||
ECDSAWithP256AndSHA256,
|
||||
Ed25519,
|
||||
PKCS1WithSHA384,
|
||||
PKCS1WithSHA512,
|
||||
ECDSAWithP384AndSHA384,
|
||||
ECDSAWithP521AndSHA512,
|
||||
PKCS1WithSHA1,
|
||||
ECDSAWithSHA1,
|
||||
}
|
||||
|
||||
// helloRetryRequestRandom is set as the Random value of a ServerHello
|
||||
// to signal that the message is actually a HelloRetryRequest.
|
||||
var helloRetryRequestRandom = []byte{ // See RFC 8446, Section 4.1.3.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue