Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PSSWithSHA256 (0.1 sec)

  1. 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)
  2. 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)
Back to top