Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for CertificateAuthorities (0.22 sec)

  1. src/crypto/tls/handshake_client_tls13.go

    			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 {
    		return err
    	}
    
    	certMsg := new(certificateMsgTLS13)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_server_tls13.go

    		certReq := new(certificateRequestMsgTLS13)
    		certReq.ocspStapling = true
    		certReq.scts = true
    		certReq.supportedSignatureAlgorithms = supportedSignatureAlgorithms()
    		if c.config.ClientCAs != nil {
    			certReq.certificateAuthorities = c.config.ClientCAs.Subjects()
    		}
    
    		if _, err := hs.c.writeHandshakeRecord(certReq, hs.transcript); err != nil {
    			return err
    		}
    	}
    
    	certMsg := new(certificateMsgTLS13)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_client.go

    func certificateRequestInfoFromMsg(ctx context.Context, vers uint16, certReq *certificateRequestMsg) *CertificateRequestInfo {
    	cri := &CertificateRequestInfo{
    		AcceptableCAs: certReq.certificateAuthorities,
    		Version:       vers,
    		ctx:           ctx,
    	}
    
    	var rsaAvail, ecAvail bool
    	for _, certType := range certReq.certificateTypes {
    		switch certType {
    		case certTypeRSASign:
    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