Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 62 for certRoot (0.2 sec)

  1. 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)
  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. api/go1.18.txt

    pkg bytes, func Title //deprecated
    pkg crypto/tls, method (*Conn) NetConn() net.Conn
    pkg crypto/tls, type Config struct, PreferServerCipherSuites //deprecated
    pkg crypto/x509, method (*CertPool) Subjects //deprecated
    pkg debug/buildinfo, func Read(io.ReaderAt) (*debug.BuildInfo, error)
    pkg debug/buildinfo, func ReadFile(string) (*debug.BuildInfo, error)
    pkg debug/buildinfo, type BuildInfo = debug.BuildInfo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 13K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    	options := DefaultVerifyOptions()
    	options.Roots = getRootCertPool(t)
    	return options
    }
    
    func getRootCertPool(t *testing.T) *x509.CertPool {
    	return getRootCertPoolFor(t, rootCACert)
    }
    
    func getRootCertPoolFor(t *testing.T, certs ...string) *x509.CertPool {
    	pool := x509.NewCertPool()
    	for _, cert := range certs {
    		pool.AddCert(getCert(t, cert))
    	}
    	return pool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  5. api/go1.7.txt

    pkg crypto/tls, type Config struct, DynamicRecordSizingDisabled bool
    pkg crypto/tls, type Config struct, Renegotiation RenegotiationSupport
    pkg crypto/tls, type RenegotiationSupport int
    pkg crypto/x509, func SystemCertPool() (*CertPool, error)
    pkg crypto/x509, type SystemRootsError struct, Err error
    pkg debug/dwarf, method (*Data) Ranges(*Entry) ([][2]uint64, error)
    pkg debug/dwarf, method (*Reader) SeekPC(uint64) (*Entry, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 28 15:08:11 UTC 2016
    - 13.6K bytes
    - Viewed (0)
  6. docs/zh/docs/deployment/concepts.md

    并且必须有某个东西负责**更新 HTTPS 证书**,它可以是相同的组件,也可以是不同的组件。
    
    
    ### HTTPS 示例工具
    
    您可以用作 TLS 终止代理的一些工具包括:
    
    * Traefik
         * 自动处理证书更新 ✨
    * Caddy
         * 自动处理证书更新 ✨
    * Nginx
         * 使用 Certbot 等外部组件进行证书更新
    * HAProxy
         * 使用 Certbot 等外部组件进行证书更新
    * 带有 Ingress Controller(如Nginx) 的 Kubernetes
         * 使用诸如 cert-manager 之类的外部组件来进行证书更新
    * 由云服务商内部处理,作为其服务的一部分(请阅读下文👇)
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top