Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,564 for currentCA (0.15 sec)

  1. pkg/controller/certificates/signer/ca_provider.go

    		RawKey:  keyPEM,
    
    		Certificate: certs[0],
    		PrivateKey:  priv,
    	}
    	p.caValue.Store(ca)
    
    	return nil
    }
    
    // currentCA provides the current value of the CA.
    // It always check for a stale value.  This is cheap because it's all an in memory cache of small slices.
    func (p *caProvider) currentCA() (*authority.CertificateAuthority, error) {
    	certPEM, keyPEM := p.caLoader.CurrentCertKeyContent()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 16 18:33:22 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  2. pkg/test/csrctrl/signer/ca_provider.go

    		PrivateKey:  priv,
    		Backdate:    5 * time.Minute,
    	}
    	p.caValue.Store(ca)
    
    	return nil
    }
    
    // currentCA provides the current value of the CA.
    // It always check for a stale value.  This is cheap because it's all an in memory cache of small slices.
    func (p *caProvider) currentCA() (*authority.CertificateAuthority, error) {
    	certPEM, cerr := p.currentCertContent()
    	if cerr != nil {
    		return nil, cerr
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 27 08:14:39 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  3. pkg/test/csrctrl/signer/signer.go

    	}
    	return ret, nil
    }
    
    func (s *Signer) Sign(x509cr *x509.CertificateRequest, usages []capi.KeyUsage, requestedLifetime time.Duration, appendRootCert bool) ([]byte, error) {
    	currCA, err := s.caProvider.currentCA()
    	if err != nil {
    		return nil, err
    	}
    	der, err := currCA.Sign(x509cr.Raw, authority.PermissiveSigningPolicy{
    		TTL:    requestedLifetime,
    		Usages: usages,
    	})
    	if err != nil {
    		return nil, err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 03 18:57:19 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

          assert(!AtEnd());
          ++current6_;
          if (current6_ == end6_) {
            current6_ = begin6_;
            ++current5_;
          }
          if (current5_ == end5_) {
            current5_ = begin5_;
            ++current4_;
          }
          if (current4_ == end4_) {
            current4_ = begin4_;
            ++current3_;
          }
          if (current3_ == end3_) {
            current3_ = begin3_;
            ++current2_;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 187.7K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

          assert(!AtEnd());
          ++current6_;
          if (current6_ == end6_) {
            current6_ = begin6_;
            ++current5_;
          }
          if (current5_ == end5_) {
            current5_ = begin5_;
            ++current4_;
          }
          if (current4_ == end4_) {
            current4_ = begin4_;
            ++current3_;
          }
          if (current3_ == end3_) {
            current3_ = begin3_;
            ++current2_;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 187.7K bytes
    - Viewed (0)
  6. pkg/controller/certificates/signer/signer.go

    	}
    	return nil
    }
    
    func (s *signer) sign(x509cr *x509.CertificateRequest, usages []capi.KeyUsage, expirationSeconds *int32, now func() time.Time) ([]byte, error) {
    	currCA, err := s.caProvider.currentCA()
    	if err != nil {
    		return nil, err
    	}
    	der, err := currCA.Sign(x509cr.Raw, authority.PermissiveSigningPolicy{
    		TTL:      s.duration(expirationSeconds),
    		Usages:   usages,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. operator/pkg/helmreconciler/testdata/current.yaml

    Vincent <******@****.***> 1603165005 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 20 03:36:45 UTC 2020
    - 295 bytes
    - Viewed (0)
  8. cmd/config-current.go

    Harshavardhana <******@****.***> 1717056898 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 08:14:58 UTC 2024
    - 30.8K bytes
    - Viewed (0)
  9. docs/zh/docs/tutorial/security/get-current-user.md

    jaystone776 <******@****.***> 1711838806 +0800
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 22:46:46 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/test/cmd/testdata/init/current-component-config.yaml

    Lubomir I. Ivanov <******@****.***> 1617148903 +0300
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 20 00:47:27 UTC 2021
    - 135 bytes
    - Viewed (0)
Back to top