Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CA ¶
type CA interface { // CertBytes returns the certificate of the CA in PEM encoding CertBytes() []byte // newCertKeyPair returns a certificate and private key pair and nil, // or nil, error in case of failure // The certificate is signed by the CA and is used for TLS client authentication NewClientCertKeyPair() (*CertKeyPair, error) // NewServerCertKeyPair returns a CertKeyPair and nil, // with a given custom SAN. // The certificate is signed by the CA. // Returns nil, error in case of failure NewServerCertKeyPair(host string) (*CertKeyPair, error) }
CA defines a certificate authority that can generate certificates signed by it
Click to show internal directories.
Click to hide internal directories.