Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for is_ca (0.09 sec)

  1. pkg/volume/projected/projected_test.go

    	if err != nil {
    		t.Fatalf("Error while generating key: %v", err)
    	}
    
    	template := &x509.Certificate{
    		SerialNumber: big.NewInt(0),
    		Subject: pkix.Name{
    			CommonName: cn,
    		},
    		IsCA:                  true,
    		BasicConstraintsValid: true,
    	}
    
    	cert, err := x509.CreateCertificate(rand.Reader, template, template, pub, priv)
    	if err != nil {
    		t.Fatalf("Error while making certificate: %v", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 40.5K bytes
    - Viewed (0)
  2. cmd/sts-handlers.go

    	// whether they client has sent exactly one (non-CA) leaf certificate.
    	peerCertificates := make([]*x509.Certificate, 0, len(r.TLS.PeerCertificates))
    	for _, cert := range r.TLS.PeerCertificates {
    		if cert.IsCA {
    			continue
    		}
    		peerCertificates = append(peerCertificates, cert)
    	}
    	r.TLS.PeerCertificates = peerCertificates
    
    	// Now, we have to check that the client has provided exactly one leaf
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. src/crypto/x509/verify.go

    	// keyUsage, and a keyUsage containing a flag indicating that the RSA
    	// encryption key could only be used for Diffie-Hellman key agreement.
    
    	if certType == intermediateCertificate && (!c.BasicConstraintsValid || !c.IsCA) {
    		return CertificateInvalidError{c, NotAuthorizedToSign, ""}
    	}
    
    	if c.BasicConstraintsValid && c.MaxPathLen >= 0 {
    		numIntermediates := len(currentChain) - 1
    		if numIntermediates > c.MaxPathLen {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  4. cmd/test-utils_test.go

    		if ip := net.ParseIP(h); ip != nil {
    			template.IPAddresses = append(template.IPAddresses, ip)
    		} else {
    			template.DNSNames = append(template.DNSNames, h)
    		}
    	}
    
    	template.IsCA = true
    	template.KeyUsage |= x509.KeyUsageCertSign
    
    	derBytes, err := x509.CreateCertificate(crand.Reader, &template, &template, publicKey(priv), priv)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Certificate.ExtKeyUsage", Field, 0},
    		{"Certificate.Extensions", Field, 2},
    		{"Certificate.ExtraExtensions", Field, 2},
    		{"Certificate.IPAddresses", Field, 1},
    		{"Certificate.IsCA", Field, 0},
    		{"Certificate.Issuer", Field, 0},
    		{"Certificate.IssuingCertificateURL", Field, 2},
    		{"Certificate.KeyUsage", Field, 0},
    		{"Certificate.MaxPathLen", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  6. api/go1.txt

    pkg crypto/x509, type Certificate struct, DNSNames []string
    pkg crypto/x509, type Certificate struct, EmailAddresses []string
    pkg crypto/x509, type Certificate struct, ExtKeyUsage []ExtKeyUsage
    pkg crypto/x509, type Certificate struct, IsCA bool
    pkg crypto/x509, type Certificate struct, Issuer pkix.Name
    pkg crypto/x509, type Certificate struct, KeyUsage KeyUsage
    pkg crypto/x509, type Certificate struct, MaxPathLen int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top