mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
Revert "crypto/tls: disable RSA-PSS in TLS 1.2"
In Go 1.13 we will enable RSA-PSS in TLS 1.2 at the same time as we make TLS 1.3 enabled by default. This reverts commit 7ccd3583eddcd79679fb29cfc83a6e6fb6973f1e. Updates #30055 Change-Id: I6f2ddf7652d1172a6b29f4e335ff3a71a89974bc Reviewed-on: https://go-review.googlesource.com/c/163080 Run-TryBot: Filippo Valsorda <filippo@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Adam Langley <agl@golang.org>
This commit is contained in:
parent
2635294fad
commit
2e9a42ccc2
14 changed files with 42 additions and 1043 deletions
|
@ -23,15 +23,11 @@ import (
|
|||
"time"
|
||||
)
|
||||
|
||||
var savedSupportedSignatureAlgorithmsTLS12 = supportedSignatureAlgorithmsTLS12
|
||||
|
||||
func init() {
|
||||
// TLS 1.3 is opt-in for Go 1.12, and RSA-PSS is disabled in TLS 1.2, but we
|
||||
// want to run most tests with both enabled. TestTLS13Switch below and the
|
||||
// "PSS-Disabled" recordings test the disabled behavior. See Issue 30055.
|
||||
// TLS 1.3 is opt-in for Go 1.12, but we want to run most tests with it enabled.
|
||||
// TestTLS13Switch below tests the disabled behavior. See Issue 30055.
|
||||
tls13Support.Do(func() {}) // defuse the sync.Once
|
||||
tls13Support.cached = true
|
||||
supportedSignatureAlgorithmsTLS12 = supportedSignatureAlgorithms
|
||||
}
|
||||
|
||||
var rsaCertPEM = `-----BEGIN CERTIFICATE-----
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue