Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for certRoot (0.38 sec)

  1. internal/event/target/nats.go

    		ClusterID          string `json:"clusterID"`
    		Async              bool   `json:"async"`
    		MaxPubAcksInflight int    `json:"maxPubAcksInflight"`
    	} `json:"streaming"`
    
    	RootCAs *x509.CertPool `json:"-"`
    }
    
    // Validate NATSArgs fields
    func (n NATSArgs) Validate() error {
    	if !n.Enable {
    		return nil
    	}
    
    	if n.Address.IsEmpty() {
    		return errors.New("empty address")
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. cmd/globals.go

    	globalStorageClass storageclass.Config
    
    	globalAuthNPlugin *idplugin.AuthNPlugin
    
    	// CA root certificates, a nil value means system certs pool will be used
    	globalRootCAs *x509.CertPool
    
    	// IsSSL indicates if the server is configured with SSL.
    	globalIsTLS bool
    
    	globalTLSCerts *certs.Manager
    
    	globalHTTPServer        *xhttp.Server
    	globalTCPOptions        xhttp.TCPOptions
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. internal/kms/config.go

    		if err != nil {
    			return nil, err
    		}
    
    		key, err := kms.ParseAPIKey(env.Get(EnvKMSAPIKey, ""))
    		if err != nil {
    			return nil, err
    		}
    
    		var rootCAs *x509.CertPool
    		if opts != nil && opts.CADir != "" {
    			rootCAs, err = certs.GetRootCAs(opts.CADir)
    			if err != nil {
    				return nil, err
    			}
    		}
    
    		client, err := kms.NewClient(&kms.Config{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 14:31:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. internal/config/notify/parse.go

    			Key:   target.MqttQueueLimit,
    			Value: "0",
    		},
    	}
    )
    
    // GetNotifyMQTT - returns a map of registered notification 'mqtt' targets
    func GetNotifyMQTT(mqttKVS map[string]config.KVS, rootCAs *x509.CertPool) (map[string]target.MQTTArgs, error) {
    	mqttTargets := make(map[string]target.MQTTArgs)
    	for k, kv := range config.Merge(mqttKVS, target.EnvMQTTEnable, DefaultMQTTKVS) {
    		enableEnv := target.EnvMQTTEnable
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  5. src/crypto/x509/verify.go

    	// anchors, but can be used to form a chain from the leaf certificate to a
    	// root certificate.
    	Intermediates *CertPool
    	// Roots is the set of trusted root certificates the leaf certificate needs
    	// to chain up to. If nil, the system roots or the platform verifier are used.
    	Roots *CertPool
    
    	// CurrentTime is used to check the validity of all certificates in the
    	// chain. If zero, the current time is used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  6. src/crypto/x509/verify_test.go

    	}
    	c, err := ParseCertificate(d)
    	if err != nil {
    		t.Fatalf("failed to parse test cert: %s", err)
    	}
    	return c
    }
    
    func buildTrustGraph(t *testing.T, d trustGraphDescription) (*CertPool, *CertPool, *Certificate) {
    	t.Helper()
    
    	certs := map[string]*Certificate{}
    	keys := map[string]crypto.Signer{}
    	rootPool := NewCertPool()
    	for _, r := range d.Roots {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  7. cmd/test-utils_test.go

    	if err != nil {
    		return nil, nil, fmt.Errorf("Failed to create certificate: %w", err)
    	}
    
    	certOut := bytes.NewBuffer([]byte{})
    	pem.Encode(certOut, &pem.Block{Type: "CERTIFICATE", Bytes: derBytes})
    
    	keyOut := bytes.NewBuffer([]byte{})
    	pem.Encode(keyOut, pemBlockForKey(priv))
    
    	return certOut.Bytes(), keyOut.Bytes(), nil
    }
    
    func mustGetPoolEndpoints(poolIdx int, args ...string) EndpointServerPools {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  8. src/crypto/tls/common.go

    	// RootCAs defines the set of root certificate authorities
    	// that clients use when verifying server certificates.
    	// If RootCAs is nil, TLS uses the host's root CA set.
    	RootCAs *x509.CertPool
    
    	// NextProtos is a list of supported application level protocols, in
    	// order of preference. If both peers support ALPN, the selected
    	// protocol will be one from this list, and the connection will fail
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  9. src/crypto/x509/x509_test.go

    		t.Fatal("CreateCertificate didn't fail when SignatureAlgorithm = MD5WithRSA")
    	}
    }
    
    func (s *CertPool) mustCert(t *testing.T, n int) *Certificate {
    	c, err := s.lazyCerts[n].getCert()
    	if err != nil {
    		t.Fatalf("failed to load cert %d: %v", n, err)
    	}
    	return c
    }
    
    func allCerts(t *testing.T, p *CertPool) []*Certificate {
    	all := make([]*Certificate, p.len())
    	for i := range all {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  10. 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