Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for certPools (0.75 sec)

  1. src/crypto/x509/name_constraints_test.go

    	for _, cert := range certs {
    		pemBlock.Bytes = cert.Raw
    		pem.Encode(file, pemBlock)
    	}
    
    	return file
    }
    
    func testChainAgainstOpenSSL(t *testing.T, leaf *Certificate, intermediates, roots *CertPool) (string, error) {
    	args := []string{"verify", "-no_check_time"}
    
    	rootsFile := writePEMsToTempFile(allCerts(t, roots))
    	if debugOpenSSLFailure {
    		println("roots file:", rootsFile.Name())
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/preflight/checks.go

    }
    
    // configRootCAs configures and returns a reference to tls.Config instance if CAFile is provided
    func (evc ExternalEtcdVersionCheck) configRootCAs(config *tls.Config) (*tls.Config, error) {
    	var CACertPool *x509.CertPool
    	if evc.Etcd.External.CAFile != "" {
    		CACert, err := os.ReadFile(evc.Etcd.External.CAFile)
    		if err != nil {
    			return nil, errors.Wrapf(err, "couldn't load external etcd's server certificate %s", evc.Etcd.External.CAFile)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
Back to top