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

Change-Id: I78c733872cb99657ebe5c48fe0ea6b316a4b5380
This commit is contained in:
Filippo Valsorda 2018-11-14 15:29:05 -05:00
commit cd2dfb72be
13 changed files with 842 additions and 136 deletions

View file

@ -176,6 +176,9 @@ const (
// CertificateRequest. The two fields are merged to match with TLS 1.3.
// Note that in TLS 1.2, the ECDSA algorithms are not constrained to P-256, etc.
var defaultSupportedSignatureAlgorithms = []SignatureScheme{
PSSWithSHA256,
PSSWithSHA384,
PSSWithSHA512,
PKCS1WithSHA256,
ECDSAWithP256AndSHA256,
PKCS1WithSHA384,
@ -267,6 +270,7 @@ const (
PKCS1WithSHA384 SignatureScheme = 0x0501
PKCS1WithSHA512 SignatureScheme = 0x0601
// RSASSA-PSS algorithms with public key OID rsaEncryption.
PSSWithSHA256 SignatureScheme = 0x0804
PSSWithSHA384 SignatureScheme = 0x0805
PSSWithSHA512 SignatureScheme = 0x0806