Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewSelfSignedCARootCertRotator (0.24 sec)

  1. security/pkg/pki/ca/selfsignedcarootcertrotator.go

    	backOffTime        time.Duration
    	ca                 *IstioCA
    	onRootCertUpdate   func() error
    }
    
    // NewSelfSignedCARootCertRotator returns a new root cert rotator instance that
    // rotates self-signed root cert periodically.
    // nolint: gosec
    // Not security sensitive code
    func NewSelfSignedCARootCertRotator(config *SelfSignedCARootCertRotatorConfig,
    	ca *IstioCA,
    	onRootCertUpdate func() error,
    ) *SelfSignedCARootCertRotator {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. security/pkg/pki/ca/ca.go

    		caRSAKeySize:  opts.CARSAKeySize,
    	}
    
    	if opts.CAType == selfSignedCA && opts.RotatorConfig != nil && opts.RotatorConfig.CheckInterval > time.Duration(0) {
    		ca.rootCertRotator = NewSelfSignedCARootCertRotator(opts.RotatorConfig, ca, opts.OnRootCertUpdate)
    	}
    
    	// if CA cert becomes invalid before workload cert it's going to cause workload cert to be invalid too,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 17.2K bytes
    - Viewed (0)
Back to top