Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for certificate_authorities (0.26 sec)

  1. src/crypto/tls/common.go

    // incur a significant performance cost.
    func (chi *ClientHelloInfo) SupportsCertificate(c *Certificate) error {
    	// Note we don't currently support certificate_authorities nor
    	// signature_algorithms_cert, and don't check the algorithms of the
    	// signatures on the chain (which anyway are a SHOULD, see RFC 8446,
    	// Section 4.4.2.2).
    
    	config := chi.config
    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. cmd/kubeadm/app/apis/output/zz_generated.deepcopy.go

    		in, out := &in.Certificates, &out.Certificates
    		*out = make([]Certificate, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.CertificateAuthorities != nil {
    		in, out := &in.CertificateAuthorities, &out.CertificateAuthorities
    		*out = make([]Certificate, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/output/types.go

    	metav1.TypeMeta
    
    	// Certificates holds a list of certificates to show expiration information for.
    	Certificates []Certificate
    
    	// CertificateAuthorities holds a list of certificate authorities to show expiration information for.
    	CertificateAuthorities []Certificate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/output/v1alpha3/zz_generated.conversion.go

    	out.Certificates = *(*[]output.Certificate)(unsafe.Pointer(&in.Certificates))
    	out.CertificateAuthorities = *(*[]output.Certificate)(unsafe.Pointer(&in.CertificateAuthorities))
    	return nil
    }
    
    // Convert_v1alpha3_CertificateExpirationInfo_To_output_CertificateExpirationInfo is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_messages_test.go

    	m := &certificateRequestMsg{}
    	m.certificateTypes = randomBytes(rand.Intn(5)+1, rand)
    	for i := 0; i < rand.Intn(100); i++ {
    		m.certificateAuthorities = append(m.certificateAuthorities, randomBytes(rand.Intn(15)+1, rand))
    	}
    	return reflect.ValueOf(m)
    }
    
    func (*certificateVerifyMsg) Generate(rand *rand.Rand, size int) reflect.Value {
    	m := &certificateVerifyMsg{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/certs.go

    	for _, handler := range rm.CAs() {
    		if ok, _ := rm.CAExists(handler.Name); ok {
    			e, err := rm.GetCAExpirationInfo(handler.Name)
    			if err != nil {
    				return nil, err
    			}
    			info.CertificateAuthorities = append(info.CertificateAuthorities, outputapiv1alpha3.Certificate{
    				Name:                e.Name,
    				ExpirationDate:      metav1.Time{Time: e.ExpirationDate},
    				ResidualTimeSeconds: int64(e.ResidualTime() / time.Second),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_messages.go

    	copy(cas, data)
    	data = data[casLength:]
    
    	m.certificateAuthorities = nil
    	for len(cas) > 0 {
    		if len(cas) < 2 {
    			return false
    		}
    		caLen := uint16(cas[0])<<8 | uint16(cas[1])
    		cas = cas[2:]
    
    		if len(cas) < int(caLen) {
    			return false
    		}
    
    		m.certificateAuthorities = append(m.certificateAuthorities, cas[:caLen])
    		cas = cas[caLen:]
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_server.go

    		}
    
    		// An empty list of certificateAuthorities signals to
    		// the client that it may send any certificate in response
    		// to our request. When we know the CAs we trust, then
    		// we can send them down, so that the client can choose
    		// an appropriate certificate to give to us.
    		if c.config.ClientCAs != nil {
    			certReq.certificateAuthorities = c.config.ClientCAs.Subjects()
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top