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: I9246c8228d38559c40e69fa403fa946ac1b31dbe
This commit is contained in:
commit
96f0ccfb2d
41 changed files with 2727 additions and 1977 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue