Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for signWithCertChain (0.19 sec)

  1. security/pkg/server/ca/server.go

    type CertificateAuthority interface {
    	// Sign generates a certificate for a workload or CA, from the given CSR and cert opts.
    	Sign(csrPEM []byte, opts ca.CertOpts) ([]byte, error)
    	// SignWithCertChain is similar to Sign but returns the leaf cert and the entire cert chain.
    	SignWithCertChain(csrPEM []byte, opts ca.CertOpts) ([]string, error)
    	// GetCAKeyCertBundle returns the KeyCertBundle used by CA.
    	GetCAKeyCertBundle() *util.KeyCertBundle
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:26 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top