Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for certRoot (0.37 sec)

  1. docs/tls/README.md

    # (Optional) Server IP address
    ip_address = "127.0.0.1"
    
    # Whether this certificate will be used for a TLS server
    tls_www_server
    ```
    
    Run `certtool.exe` and specify the configuration file to generate a certificate:
    
    ```
    certtool.exe --generate-self-signed --load-privkey private.key --template cert.cnf --outfile public.crt
    ```
    
    ## 4. Install Certificates from Third-party CAs
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  2. src/crypto/x509/cert_pool.go

    	getCert func() (*Certificate, error)
    }
    
    // NewCertPool returns a new, empty CertPool.
    func NewCertPool() *CertPool {
    	return &CertPool{
    		byName:  make(map[string][]int),
    		haveSum: make(map[sum224]bool),
    	}
    }
    
    // len returns the number of certs in the set.
    // A nil set is a valid empty set.
    func (s *CertPool) len() int {
    	if s == nil {
    		return 0
    	}
    	return len(s.lazyCerts)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:41:40 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. pilot/pkg/grpc/tls.go

    }
    
    func getRootCertificate(rootCertFile string) (*x509.CertPool, error) {
    	var certPool *x509.CertPool
    	var rootCert []byte
    	var err error
    
    	if rootCertFile != "" {
    		rootCert, err = os.ReadFile(rootCertFile)
    		if err != nil {
    			return nil, err
    		}
    
    		certPool = x509.NewCertPool()
    		ok := certPool.AppendCertsFromPEM(rootCert)
    		if !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. pkg/test/echo/client.go

    		if err != nil {
    			return nil, err
    		}
    
    		var certPool *x509.CertPool
    		certPool, err = x509.SystemCertPool()
    		if err != nil {
    			return nil, fmt.Errorf("failed to fetch Cert from SystemCertPool: %v", err)
    		}
    
    		if tlsSettings.RootCert != "" && !certPool.AppendCertsFromPEM([]byte(tlsSettings.RootCert)) {
    			return nil, fmt.Errorf("failed to create cert pool")
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 14 20:23:34 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  5. src/crypto/x509/root.go

    // See go.dev/issue/67401.
    //
    //go:linkname systemRoots
    var (
    	once           sync.Once
    	systemRootsMu  sync.RWMutex
    	systemRoots    *CertPool
    	systemRootsErr error
    	fallbacksSet   bool
    )
    
    func systemRootsPool() *CertPool {
    	once.Do(initSystemRoots)
    	systemRootsMu.RLock()
    	defer systemRootsMu.RUnlock()
    	return systemRoots
    }
    
    func initSystemRoots() {
    	systemRootsMu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. internal/config/dns/operator_dns.go

    	return func(args *OperatorDNS) {
    		args.username = username
    		args.password = password
    	}
    }
    
    // RootCAs - add custom trust certs pool
    func RootCAs(certPool *x509.CertPool) OperatorOption {
    	return func(args *OperatorDNS) {
    		args.rootCAs = certPool
    	}
    }
    
    // NewOperatorDNS - initialize a new K8S Operator DNS set/unset values.
    func NewOperatorDNS(endpoint string, setters ...OperatorOption) (Store, error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:10 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/vcweb/vcstest/vcstest.go

    	}
    
    	pemBytes, err := os.ReadFile(certFile)
    	if err != nil {
    		return nil, err
    	}
    
    	certpool := x509.NewCertPool()
    	if !certpool.AppendCertsFromPEM(pemBytes) {
    		return nil, fmt.Errorf("no certificates found in %s", certFile)
    	}
    	client.Transport.(*http.Transport).TLSClientConfig = &tls.Config{
    		RootCAs: certpool,
    	}
    
    	return client, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:44:48 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  8. pkg/test/framework/components/istio/ca.go

    func newCitadelClient(endpoint string, rootCert []byte) (pb.IstioCertificateServiceClient, error) {
    	certPool := x509.NewCertPool()
    	ok := certPool.AppendCertsFromPEM(rootCert)
    	if !ok {
    		return nil, fmt.Errorf("failed to append certificates")
    	}
    	config := tls.Config{
    		RootCAs:            certPool,
    		InsecureSkipVerify: true, // nolint: gosec // test only code
    	}
    	transportCreds := credentials.NewTLS(&config)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. src/crypto/x509/root_darwin.go

    	data, err := macOS.SecCertificateCopyData(cert)
    	if err != nil {
    		return nil, err
    	}
    	return ParseCertificate(data)
    }
    
    func loadSystemRoots() (*CertPool, error) {
    	return &CertPool{systemPool: true}, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 00:36:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. src/crypto/x509/root_windows.go

    	"errors"
    	"strings"
    	"syscall"
    	"unsafe"
    )
    
    func loadSystemRoots() (*CertPool, error) {
    	return &CertPool{systemPool: true}, nil
    }
    
    // Creates a new *syscall.CertContext representing the leaf certificate in an in-memory
    // certificate store containing itself and all of the intermediate certificates specified
    // in the opts.Intermediates CertPool.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:41:40 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top