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

Updated TestBoringServerSignatureAndHash to expect RSA-PSS to work with
TLS 1.2, and hence with FIPS mode.

Change-Id: I358271b2e4804733cf61dc132fa0c5f39c2bff19
This commit is contained in:
Filippo Valsorda 2019-11-20 16:19:41 -05:00
commit 0f829ed5f4
36 changed files with 1813 additions and 1356 deletions

View file

@ -125,13 +125,4 @@ 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