Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SignerPrivPem (0.23 sec)

  1. security/pkg/pki/util/generate_cert.go

    	TTL time.Duration
    
    	// Signer certificate.
    	SignerCert *x509.Certificate
    
    	// Signer private key.
    	SignerPriv crypto.PrivateKey
    
    	// Signer private key (PEM encoded).
    	SignerPrivPem []byte
    
    	// Organization for this certificate.
    	Org string
    
    	// The size of RSA private key to be generated.
    	RSAKeySize int
    
    	// Whether this certificate is used as signing cert for CA.
    	IsCA bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 02 14:34:38 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  2. security/pkg/pki/ca/selfsignedcarootcertrotator.go

    			"new root certificate may not match old root certificate", err)
    	}
    	options := util.CertOptions{
    		TTL:           rotator.config.caCertTTL,
    		SignerPrivPem: caSecret.Data[CAPrivateKeyFile],
    		Org:           rotator.config.org,
    		IsCA:          true,
    		IsSelfSigned:  true,
    		RSAKeySize:    rotator.ca.caRSAKeySize,
    		IsDualUse:     rotator.config.dualUse,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. security/pkg/pki/ca/selfsignedcarootcertrotator_test.go

    	certItem0 := loadCert(rotator)
    	oldRootCert := certItem0.rootCertInKeyCertBundle
    	options := util.CertOptions{
    		TTL:           rotator.config.caCertTTL,
    		SignerPrivPem: certItem0.caSecret.Data[CAPrivateKeyFile],
    		Org:           rotator.config.org,
    		IsCA:          true,
    		IsSelfSigned:  true,
    		RSAKeySize:    rotator.ca.caRSAKeySize,
    		IsDualUse:     rotator.config.dualUse,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 23:33:41 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  4. security/pkg/pki/util/generate_cert_test.go

    	// Verify that changing RSA key size does not change private key, as the key is reused.
    	defaultRSAKeySize := 4096
    	// Create a default cert options
    	newCertOptions := CertOptions{
    		TTL:           caCertTTL,
    		SignerPrivPem: oldRootKeyPem,
    		Org:           defaultOrg,
    		IsCA:          true,
    		IsSelfSigned:  true,
    		RSAKeySize:    defaultRSAKeySize,
    		IsDualUse:     false,
    	}
    	// Merge cert options.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 06 12:48:53 UTC 2023
    - 29.4K bytes
    - Viewed (0)
Back to top