Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for CertificateRequestInfo (0.2 sec)

  1. pkg/test/echo/server/forwarder/config.go

    	// Http proxy used for connection
    	Proxy string
    
    	// Filled in values.
    	scheme                  scheme.Instance
    	tlsConfig               *tls.Config
    	getClientCertificate    func(info *tls.CertificateRequestInfo) (*tls.Certificate, error)
    	checkRedirect           func(req *http.Request, via []*http.Request) error
    	proxyURL                func(*http.Request) (*url.URL, error)
    	timeout                 time.Duration
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. api/go1.8.txt

    pkg crypto/tls, const X25519 CurveID
    pkg crypto/tls, method (*Config) Clone() *Config
    pkg crypto/tls, method (*Conn) CloseWrite() error
    pkg crypto/tls, type CertificateRequestInfo struct
    pkg crypto/tls, type CertificateRequestInfo struct, AcceptableCAs [][]uint8
    pkg crypto/tls, type CertificateRequestInfo struct, SignatureSchemes []SignatureScheme
    pkg crypto/tls, type ClientHelloInfo struct, Conn net.Conn
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 21 05:25:57 UTC 2016
    - 16.3K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_client.go

    		}
    	}
    
    	return nil
    }
    
    // certificateRequestInfoFromMsg generates a CertificateRequestInfo from a TLS
    // <= 1.2 CertificateRequest, making an effort to fill in missing information.
    func certificateRequestInfoFromMsg(ctx context.Context, vers uint16, certReq *certificateRequestMsg) *CertificateRequestInfo {
    	cri := &CertificateRequestInfo{
    		AcceptableCAs: certReq.certificateAuthorities,
    		Version:       vers,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  4. internal/kms/config.go

    			if err != nil {
    				return nil, err
    			}
    
    			cert, err := kes.GenerateCertificate(key)
    			if err != nil {
    				return nil, err
    			}
    			conf.GetClientCertificate = func(*tls.CertificateRequestInfo) (*tls.Certificate, error) { return &cert, nil }
    		} else {
    			loadX509KeyPair := func(certFile, keyFile string) (tls.Certificate, error) {
    				// Manually load the certificate and private key into memory.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 14:31:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_client_tls13.go

    		if _, err := hs.c.writeHandshakeRecord(&certificateMsgTLS13{}, hs.transcript); err != nil {
    			return err
    		}
    		return nil
    	}
    
    	cert, err := c.getClientCertificate(&CertificateRequestInfo{
    		AcceptableCAs:    hs.certReq.certificateAuthorities,
    		SignatureSchemes: hs.certReq.supportedSignatureAlgorithms,
    		Version:          c.vers,
    		ctx:              hs.ctx,
    	})
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. api/go1.17.txt

    pkg compress/lzw, method (*Writer) Reset(io.Writer, Order, int)
    pkg compress/lzw, method (*Writer) Write([]uint8) (int, error)
    pkg compress/lzw, type Reader struct
    pkg compress/lzw, type Writer struct
    pkg crypto/tls, method (*CertificateRequestInfo) Context() context.Context
    pkg crypto/tls, method (*ClientHelloInfo) Context() context.Context
    pkg crypto/tls, method (*Conn) HandshakeContext(context.Context) error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top