Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for CertificateRequestInfo (0.22 sec)

  1. src/crypto/tls/common.go

    func (c *ClientHelloInfo) Context() context.Context {
    	return c.ctx
    }
    
    // CertificateRequestInfo contains information from a server's
    // CertificateRequest message, which is used to demand a certificate and proof
    // of control from a client.
    type CertificateRequestInfo struct {
    	// AcceptableCAs contains zero or more, DER-encoded, X.501
    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/handshake_client_test.go

    			clientConfig.GetClientCertificate = func(cri *CertificateRequestInfo) (*Certificate, error) {
    				return nil, errors.New("GetClientCertificate")
    			}
    		},
    		"GetClientCertificate",
    		func(t *testing.T, testNum int, cs *ConnectionState) {
    		},
    	},
    	{
    		func(clientConfig, serverConfig *Config) {
    			clientConfig.GetClientCertificate = func(cri *CertificateRequestInfo) (*Certificate, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_server_test.go

    	go func() {
    		defer close(clientErr)
    		defer c.Close()
    		var innerCtx context.Context
    		clientConfig.Certificates = nil
    		clientConfig.GetClientCertificate = func(certificateRequest *CertificateRequestInfo) (*Certificate, error) {
    			if val, ok := certificateRequest.Context().Value(key).(bool); !ok || !val {
    				t.Errorf("GetClientCertificate context was not child of HandshakeContext")
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. src/crypto/tls/tls_test.go

    			called |= 1 << 0
    			return time.Time{}
    		},
    		GetCertificate: func(*ClientHelloInfo) (*Certificate, error) {
    			called |= 1 << 1
    			return nil, nil
    		},
    		GetClientCertificate: func(*CertificateRequestInfo) (*Certificate, error) {
    			called |= 1 << 2
    			return nil, nil
    		},
    		GetConfigForClient: func(*ClientHelloInfo) (*Config, error) {
    			called |= 1 << 3
    			return nil, nil
    		},
    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