Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for NotBefore (0.74 sec)

  1. staging/src/k8s.io/api/certificates/v1/generated.proto

      // expirationSeconds is the requested duration of validity of the issued
      // certificate. The certificate signer may issue a certificate with a different
      // validity duration so a client must check the delta between the notBefore and
      // and notAfter fields in the issued certificate to determine the actual duration.
      //
      // The v1.22+ in-tree implementations of the well-known Kubernetes signers will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/certificates/v1/generated.proto

      // expirationSeconds is the requested duration of validity of the issued
      // certificate. The certificate signer may issue a certificate with a different
      // validity duration so a client must check the delta between the notBefore and
      // and notAfter fields in the issued certificate to determine the actual duration.
      //
      // The v1.22+ in-tree implementations of the well-known Kubernetes signers will
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/certificates/v1/types.go

    	// expirationSeconds is the requested duration of validity of the issued
    	// certificate. The certificate signer may issue a certificate with a different
    	// validity duration so a client must check the delta between the notBefore and
    	// and notAfter fields in the issued certificate to determine the actual duration.
    	//
    	// The v1.22+ in-tree implementations of the well-known Kubernetes signers will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/certs/certlist.go

    	// should be
    	if k.creationTime.IsZero() {
    		k.creationTime = kubeadmutil.StartTimeUTC()
    	}
    
    	// Backdate certificate to allow small time jumps.
    	k.config.NotBefore = k.creationTime.Add(-kubeadmconstants.CertificateBackdate)
    
    	// Use the validity periods defined in the ClusterConfiguration.
    	// If CAName is empty this is a CA cert.
    	if len(k.CAName) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. pilot/pkg/xds/sds.go

    	if err != nil {
    		return err
    	}
    	now := time.Now()
    	for _, cert := range certs {
    		// check if the certificate has expired
    		if now.After(cert.NotAfter) || now.Before(cert.NotBefore) {
    			return fmt.Errorf("certificate is expired or not yet valid")
    		}
    	}
    	return nil
    }
    
    func recordInvalidCertificate(name string, err error) {
    	pilotSDSCertificateErrors.Increment()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. src/crypto/x509/name_constraints_test.go

    	var serialBytes [16]byte
    	rand.Read(serialBytes[:])
    
    	template := &Certificate{
    		SerialNumber: new(big.Int).SetBytes(serialBytes[:]),
    		Subject: pkix.Name{
    			CommonName: name,
    		},
    		NotBefore:             time.Unix(1000, 0),
    		NotAfter:              time.Unix(2000, 0),
    		KeyUsage:              KeyUsageCertSign,
    		BasicConstraintsValid: true,
    		IsCA:                  true,
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  7. src/crypto/tls/boring_test.go

    		org = org[:i]
    		parentOrg = name[i+1:]
    	}
    	tmpl := &x509.Certificate{
    		SerialNumber: big.NewInt(1),
    		Subject: pkix.Name{
    			Organization: []string{org},
    		},
    		NotBefore: time.Unix(0, 0),
    		NotAfter:  time.Unix(0, 0),
    
    		KeyUsage:              x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. src/crypto/x509/verify.go

    		}
    	}
    
    	now := opts.CurrentTime
    	if now.IsZero() {
    		now = time.Now()
    	}
    	if now.Before(c.NotBefore) {
    		return CertificateInvalidError{
    			Cert:   c,
    			Reason: Expired,
    			Detail: fmt.Sprintf("current time %s is before %s", now.Format(time.RFC3339), c.NotBefore.Format(time.RFC3339)),
    		}
    	} else if now.After(c.NotAfter) {
    		return CertificateInvalidError{
    			Cert:   c,
    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. cmd/kubeadm/app/constants/constants.go

    	ManifestsSubDirName = "manifests"
    	// TempDirForKubeadm defines temporary directory for kubeadm
    	// should be joined with KubernetesDir.
    	TempDirForKubeadm = "tmp"
    
    	// CertificateBackdate defines the offset applied to notBefore for CA certificates generated by kubeadm
    	CertificateBackdate = time.Minute * 5
    	// CertificateValidityPeriod defines the validity period for all the signed certificates generated by kubeadm
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
Back to top