Documentation
¶
Index ¶
- func MustCreateCert(t *testing.T, pkData []byte, spec *cmapi.Certificate) []byte
- func MustCreateCertWithNotBeforeAfter(t *testing.T, pkData []byte, spec *cmapi.Certificate, ...) []byte
- func MustCreatePEMPrivateKey(t *testing.T) []byte
- func MustGenerateCSRImpl(t *testing.T, pkData []byte, cert *cmapi.Certificate) []byte
- type CryptoBundle
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func MustCreateCert ¶ added in v1.3.0
MustCreateCert returns a self-signed x509 certificate
func MustCreateCertWithNotBeforeAfter ¶ added in v1.3.0
func MustCreateCertWithNotBeforeAfter(t *testing.T, pkData []byte, spec *cmapi.Certificate, notBefore, notAfter time.Time) []byte
MustCreateCertWithNotBeforeAfter returns a self-signed x509 cert for Certificate with the provided NotBefore, NotAfter values
func MustCreatePEMPrivateKey ¶ added in v1.3.0
MustCreatePEMPrivateKey returns a PEM encoded 2048 bit RSA private key
func MustGenerateCSRImpl ¶ added in v1.3.0
MustGenerateCSRImpl returns PEM encoded certificate signing request
Types ¶
type CryptoBundle ¶
type CryptoBundle struct {
// certificate is the Certificate resource used to create this bundle
Certificate *cmapi.Certificate
// expectedRequestName is the name of the CertificateRequest that is
// expected to be created to issue this certificate
ExpectedRequestName string
// privateKey is the private key used as the complement to the certificates
// in this bundle
PrivateKey crypto.Signer
PrivateKeyBytes []byte
// csr is the CSR used to obtain the certificate in this bundle
CSR *x509.CertificateRequest
CSRBytes []byte
// certificateRequest is the request that is expected to be created to
// obtain a certificate when using this bundle
CertificateRequest *cmapi.CertificateRequest
CertificateRequestPending *cmapi.CertificateRequest
CertificateRequestReady *cmapi.CertificateRequest
CertificateRequestFailed *cmapi.CertificateRequest
CertificateRequestFailedInvalidRequest *cmapi.CertificateRequest
// cert is a signed certificate
Cert *x509.Certificate
CertBytes []byte
LocalTemporaryCertificateBytes []byte
FixedClock *fakeclock.FakeClock
}
func MustCreateCryptoBundle ¶
func MustCreateCryptoBundle(t *testing.T, crt *cmapi.Certificate, fixedClock *fakeclock.FakeClock) CryptoBundle
Click to show internal directories.
Click to hide internal directories.