Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for BasicConstraintsValid (0.27 sec)

  1. pkg/controller/certificates/authority/authority_test.go

    				NotAfter:              now.Add(1 * time.Hour),
    				BasicConstraintsValid: true,
    			},
    		},
    		{
    			name:   "key usage",
    			policy: PermissiveSigningPolicy{TTL: time.Hour, Usages: []capi.KeyUsage{"signing"}, Now: nowFunc},
    			want: x509.Certificate{
    				NotBefore:             now,
    				NotAfter:              now.Add(1 * time.Hour),
    				BasicConstraintsValid: true,
    				KeyUsage:              x509.KeyUsageDigitalSignature,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 23 19:36:11 UTC 2021
    - 7.3K bytes
    - Viewed (0)
  2. src/crypto/x509/boring_test.go

    		NotAfter:  time.Unix(0, 0),
    
    		KeyUsage:              KeyUsageKeyEncipherment | KeyUsageDigitalSignature,
    		ExtKeyUsage:           []ExtKeyUsage{ExtKeyUsageServerAuth, ExtKeyUsageClientAuth},
    		BasicConstraintsValid: true,
    	}
    	if mode&^boringCertFIPSOK == boringCertLeaf {
    		tmpl.DNSNames = []string{"example.com"}
    	} else {
    		tmpl.IsCA = true
    		tmpl.KeyUsage |= KeyUsageCertSign
    	}
    
    	var pcert *Certificate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 17 17:38:47 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  3. src/crypto/x509/hybrid_pool_test.go

    	rootTmpl := &x509.Certificate{
    		SerialNumber:          big.NewInt(1),
    		Subject:               pkix.Name{CommonName: "Go test root"},
    		IsCA:                  true,
    		BasicConstraintsValid: true,
    		NotBefore:             time.Now().Add(-time.Hour),
    		NotAfter:              time.Now().Add(time.Hour * 10),
    	}
    	k, err := ecdsa.GenerateKey(elliptic.P256(), rand.Reader)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:48:11 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. src/crypto/x509/x509.go

    	UnknownExtKeyUsage []asn1.ObjectIdentifier // Encountered extended key usages unknown to this package.
    
    	// BasicConstraintsValid indicates whether IsCA, MaxPathLen,
    	// and MaxPathLenZero are valid.
    	BasicConstraintsValid bool
    	IsCA                  bool
    
    	// MaxPathLen and MaxPathLenZero indicate the presence and
    	// value of the BasicConstraints' "pathLenConstraint".
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  5. pkg/test/csrctrl/authority/policies.go

    	if err != nil {
    		return err
    	}
    	tmpl.KeyUsage = usage
    	tmpl.ExtKeyUsage = extUsages
    	tmpl.NotAfter = tmpl.NotBefore.Add(p.TTL)
    
    	tmpl.ExtraExtensions = nil
    	tmpl.Extensions = nil
    	tmpl.BasicConstraintsValid = true
    	tmpl.IsCA = false
    
    	return nil
    }
    
    var keyUsageDict = map[capi.KeyUsage]x509.KeyUsage{
    	capi.UsageSigning:           x509.KeyUsageDigitalSignature,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 03 17:06:22 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  6. src/crypto/tls/generate_cert.go

    			Organization: []string{"Acme Co"},
    		},
    		NotBefore: notBefore,
    		NotAfter:  notAfter,
    
    		KeyUsage:              keyUsage,
    		ExtKeyUsage:           []x509.ExtKeyUsage{x509.ExtKeyUsageServerAuth},
    		BasicConstraintsValid: true,
    	}
    
    	hosts := strings.Split(*host, ",")
    	for _, h := range hosts {
    		if ip := net.ParseIP(h); ip != nil {
    			template.IPAddresses = append(template.IPAddresses, ip)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 08 15:22:02 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  7. pkg/controller/certificates/authority/policies.go

    	usage, extUsages, err := keyUsagesFromStrings(p.Usages)
    	if err != nil {
    		return err
    	}
    	tmpl.KeyUsage = usage
    	tmpl.ExtKeyUsage = extUsages
    
    	tmpl.ExtraExtensions = nil
    	tmpl.Extensions = nil
    	tmpl.BasicConstraintsValid = true
    	tmpl.IsCA = false
    
    	tmpl.NotBefore = now.Add(-p.Backdate)
    
    	if ttl < p.Short {
    		// do not backdate the end time if we consider this to be a short lived certificate
    		tmpl.NotAfter = now.Add(ttl)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/named_certificates_test.go

    		KeyUsage:              x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature | x509.KeyUsageCertSign,
    		ExtKeyUsage:           []x509.ExtKeyUsage{x509.ExtKeyUsageServerAuth},
    		BasicConstraintsValid: true,
    		IsCA:                  true,
    	}
    
    	if ip := netutils.ParseIPSloppy(host); ip != nil {
    		template.IPAddresses = append(template.IPAddresses, ip)
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 20 08:42:09 UTC 2021
    - 8K bytes
    - Viewed (0)
  9. security/pkg/pki/util/generate_cert.go

    		NotBefore:             now.Add(-ClockSkewGracePeriod),
    		NotAfter:              now.Add(ttl),
    		KeyUsage:              keyUsage,
    		ExtKeyUsage:           extKeyUsages,
    		IsCA:                  isCA,
    		BasicConstraintsValid: true,
    		ExtraExtensions:       exts,
    	}, nil
    }
    
    // genCertTemplateFromoptions generates a certificate template with the given options.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 02 14:34:38 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  10. src/crypto/x509/x509_test.go

    		t.Error("setting MaxPathLenZero when IsCA is false should fail")
    	}
    
    	template.BasicConstraintsValid = false
    	if m := serialiseAndParse(t, template).MaxPathLen; m != 0 {
    		t.Errorf("Bad MaxPathLen should be ignored if BasicConstraintsValid is false, got %d", m)
    	}
    }
    
    func TestMaxPathLen(t *testing.T) {
    	template := &Certificate{
    		SerialNumber: big.NewInt(1),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
Back to top