Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 59 for certRoot (0.17 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. 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)
  3. 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)
  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. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper_test.go

    		}
    		ts := httptest.NewUnstartedServer(h)
    		ts.TLS = &tls.Config{
    			Certificates: []tls.Certificate{cert},
    		}
    		ts.StartTLS()
    		return ts
    	}
    }
    
    func localhostCertPool(t *testing.T) *x509.CertPool {
    	localhostPool := x509.NewCertPool()
    
    	if !localhostPool.AppendCertsFromPEM(localhostCert) {
    		t.Errorf("error setting up localhostCert pool")
    	}
    	return localhostPool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 32.7K bytes
    - Viewed (0)
  10. src/crypto/rsa/rsa_test.go

    		GenerateMultiPrimeKey(rand.Reader, 3, i)
    		GenerateMultiPrimeKey(rand.Reader, 4, i)
    		GenerateMultiPrimeKey(rand.Reader, 5, i)
    	}
    }
    
    func TestGnuTLSKey(t *testing.T) {
    	// This is a key generated by `certtool --generate-privkey --bits 128`.
    	// It's such that de ≢ 1 mod φ(n), but is congruent mod the order of
    	// the group.
    	priv := parseKey(testingKey(`-----BEGIN RSA TESTING KEY-----
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 12 00:55:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
Back to top