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

Change-Id: I9246c8228d38559c40e69fa403fa946ac1b31dbe
This commit is contained in:
Filippo Valsorda 2019-02-08 15:36:33 -05:00
commit 96f0ccfb2d
41 changed files with 2727 additions and 1977 deletions

View file

@ -106,8 +106,11 @@ func isBoringCertificate(c *x509.Certificate) bool {
// supportedSignatureAlgorithms returns the supported signature algorithms.
// It knows that the FIPS-allowed ones are all at the beginning of
// defaultSupportedSignatureAlgorithms.
func supportedSignatureAlgorithms() []SignatureScheme {
func supportedSignatureAlgorithms(version uint16) []SignatureScheme {
all := defaultSupportedSignatureAlgorithms
if version < VersionTLS13 {
all = defaultSupportedSignatureAlgorithmsTLS12
}
if !needFIPS() {
return all
}