[dev.boringcrypto] all: merge master into dev.boringcrypto

Change-Id: Ic1d89215bb3e37a722d3d3bc7698edea940a83d9
This commit is contained in:
Filippo Valsorda 2019-06-27 18:48:02 -04:00
commit 29b7a28e8c
41 changed files with 1739 additions and 1712 deletions

View file

@ -125,4 +125,13 @@ func supportedSignatureAlgorithms() []SignatureScheme {
return fipsSupportedSignatureAlgorithms
}
// supportedSignatureAlgorithmsTLS12 returns the supported signature algorithms
// for TLS 1.2. Issue 32425.
func supportedSignatureAlgorithmsTLS12() []SignatureScheme {
if !needFIPS() {
return defaultSupportedSignatureAlgorithmsTLS12
}
return fipsSupportedSignatureAlgorithms[3:]
}
var testingOnlyForceClientHelloSignatureAlgorithms []SignatureScheme