Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for PSSWithSHA256 (0.18 sec)

  1. src/crypto/tls/auth_test.go

    		{rsaCert, []SignatureScheme{PKCS1WithSHA512, PKCS1WithSHA1}, VersionTLS12, PKCS1WithSHA512, signaturePKCS1v15, crypto.SHA512},
    		{rsaCert, []SignatureScheme{PSSWithSHA256, PKCS1WithSHA256}, VersionTLS12, PSSWithSHA256, signatureRSAPSS, crypto.SHA256},
    		{pkcs1Cert, []SignatureScheme{PSSWithSHA256, PKCS1WithSHA256}, VersionTLS12, PKCS1WithSHA256, signaturePKCS1v15, crypto.SHA256},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 08 21:48:41 UTC 2020
    - 6.9K bytes
    - Viewed (0)
  2. src/crypto/tls/defaults.go

    // 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,
    	ECDSAWithP256AndSHA256,
    	Ed25519,
    	PSSWithSHA384,
    	PSSWithSHA512,
    	PKCS1WithSHA256,
    	PKCS1WithSHA384,
    	PKCS1WithSHA512,
    	ECDSAWithP384AndSHA384,
    	ECDSAWithP521AndSHA512,
    	PKCS1WithSHA1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. src/crypto/tls/auth.go

    	switch signatureAlgorithm {
    	case PKCS1WithSHA1, PKCS1WithSHA256, PKCS1WithSHA384, PKCS1WithSHA512:
    		sigType = signaturePKCS1v15
    	case PSSWithSHA256, PSSWithSHA384, PSSWithSHA512:
    		sigType = signatureRSAPSS
    	case ECDSAWithSHA1, ECDSAWithP256AndSHA256, ECDSAWithP384AndSHA384, ECDSAWithP521AndSHA512:
    		sigType = signatureECDSA
    	case Ed25519:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. src/crypto/tls/common_string.go

    	// Re-run the stringer command to generate them again.
    	var x [1]struct{}
    	_ = x[PKCS1WithSHA256-1025]
    	_ = x[PKCS1WithSHA384-1281]
    	_ = x[PKCS1WithSHA512-1537]
    	_ = x[PSSWithSHA256-2052]
    	_ = x[PSSWithSHA384-2053]
    	_ = x[PSSWithSHA512-2054]
    	_ = x[ECDSAWithP256AndSHA256-1027]
    	_ = x[ECDSAWithP384AndSHA384-1283]
    	_ = x[ECDSAWithP521AndSHA512-1539]
    	_ = x[Ed25519-2055]
    	_ = x[PKCS1WithSHA1-513]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. api/go1.8.txt

    pkg crypto/tls, const PKCS1WithSHA384 SignatureScheme
    pkg crypto/tls, const PKCS1WithSHA512 = 1537
    pkg crypto/tls, const PKCS1WithSHA512 SignatureScheme
    pkg crypto/tls, const PSSWithSHA256 = 2052
    pkg crypto/tls, const PSSWithSHA256 SignatureScheme
    pkg crypto/tls, const PSSWithSHA384 = 2053
    pkg crypto/tls, const PSSWithSHA384 SignatureScheme
    pkg crypto/tls, const PSSWithSHA512 = 2054
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 21 05:25:57 UTC 2016
    - 16.3K bytes
    - Viewed (0)
  6. src/crypto/tls/tls_test.go

    		wantErr string
    	}{
    		{rsaCert, &ClientHelloInfo{
    			ServerName:        "example.golang",
    			SignatureSchemes:  []SignatureScheme{PSSWithSHA256},
    			SupportedVersions: []uint16{VersionTLS13},
    		}, ""},
    		{ecdsaCert, &ClientHelloInfo{
    			SignatureSchemes:  []SignatureScheme{PSSWithSHA256, ECDSAWithP256AndSHA256},
    			SupportedVersions: []uint16{VersionTLS13, VersionTLS12},
    		}, ""},
    		{rsaCert, &ClientHelloInfo{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  7. src/crypto/tls/boring_test.go

    	switch alg {
    	default:
    		return false
    	case PKCS1WithSHA256,
    		ECDSAWithP256AndSHA256,
    		PKCS1WithSHA384,
    		ECDSAWithP384AndSHA384,
    		PKCS1WithSHA512,
    		ECDSAWithP521AndSHA512,
    		PSSWithSHA256,
    		PSSWithSHA384,
    		PSSWithSHA512:
    		// ok
    	}
    	return true
    }
    
    func TestBoringServerCipherSuites(t *testing.T) {
    	serverConfig := testConfig.Clone()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. src/crypto/tls/common.go

    	PKCS1WithSHA256 SignatureScheme = 0x0401
    	PKCS1WithSHA384 SignatureScheme = 0x0501
    	PKCS1WithSHA512 SignatureScheme = 0x0601
    
    	// RSASSA-PSS algorithms with public key OID rsaEncryption.
    	PSSWithSHA256 SignatureScheme = 0x0804
    	PSSWithSHA384 SignatureScheme = 0x0805
    	PSSWithSHA512 SignatureScheme = 0x0806
    
    	// ECDSA algorithms. Only constrained to a specific curve in TLS 1.3.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"NewResumptionState", Func, 21},
    		{"NoClientCert", Const, 0},
    		{"PKCS1WithSHA1", Const, 8},
    		{"PKCS1WithSHA256", Const, 8},
    		{"PKCS1WithSHA384", Const, 8},
    		{"PKCS1WithSHA512", Const, 8},
    		{"PSSWithSHA256", Const, 8},
    		{"PSSWithSHA384", Const, 8},
    		{"PSSWithSHA512", Const, 8},
    		{"ParseSessionState", Func, 21},
    		{"QUICClient", Func, 21},
    		{"QUICConfig", Type, 21},
    		{"QUICConfig.TLSConfig", Field, 21},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top