Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ClientAuthType (0.44 sec)

  1. src/crypto/tls/common.go

    	return cs.ekm(label, context, length)
    }
    
    // ClientAuthType declares the policy the server will follow for
    // TLS Client Authentication.
    type ClientAuthType int
    
    const (
    	// NoClientCert indicates that no client certificate should be requested
    	// during the handshake, and if any certificates are sent they will not
    	// be verified.
    	NoClientCert ClientAuthType = iota
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  2. src/crypto/tls/tls_test.go

    }
    
    func testVerifyCertificates(t *testing.T, version uint16) {
    	tests := []struct {
    		name string
    
    		InsecureSkipVerify bool
    		ClientAuth         ClientAuthType
    		ClientCertificates bool
    	}{
    		{
    			name: "defaults",
    		},
    		{
    			name:               "InsecureSkipVerify",
    			InsecureSkipVerify: true,
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
Back to top