Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testingOnlyForceClientHelloSignatureAlgorithms (0.92 sec)

  1. src/crypto/tls/boring_test.go

    	defer func() {
    		testingOnlyForceClientHelloSignatureAlgorithms = nil
    	}()
    
    	for _, sigHash := range defaultSupportedSignatureAlgorithms {
    		t.Run(fmt.Sprintf("%v", sigHash), func(t *testing.T) {
    			serverConfig := testConfig.Clone()
    			serverConfig.Certificates = make([]Certificate, 1)
    
    			testingOnlyForceClientHelloSignatureAlgorithms = []SignatureScheme{sigHash}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_client.go

    		}
    	}
    
    	if maxVersion >= VersionTLS12 {
    		hello.supportedSignatureAlgorithms = supportedSignatureAlgorithms()
    	}
    	if testingOnlyForceClientHelloSignatureAlgorithms != nil {
    		hello.supportedSignatureAlgorithms = testingOnlyForceClientHelloSignatureAlgorithms
    	}
    
    	var keyShareKeys *keySharePrivateKeys
    	if hello.supportedVersions[0] == VersionTLS13 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
Back to top