Documentation ¶
Index ¶
- func GetConfigPath() string
- func GetOTTKeyPath() string
- func GetProvisionerKey(caURL, rootFile, kid string) (string, error)
- func GetProvisioners(caURL, rootFile string) ([]*authority.Provisioner, error)
- func GetPublicPath() string
- func GetRootCAPath() string
- func GetSecretsPath() string
- type PKI
- func (p *PKI) GenerateIntermediateCertificate(name string, rootCrt *stepX509.Certificate, rootKey interface{}, pass []byte) error
- func (p *PKI) GenerateKeyPairs(pass []byte) error
- func (p *PKI) GenerateRootCertificate(name string, pass []byte) (*stepX509.Certificate, interface{}, error)
- func (p *PKI) Save() error
- func (p *PKI) SetAddress(s string)
- func (p *PKI) SetCAURL(s string)
- func (p *PKI) SetDNSNames(s []string)
- func (p *PKI) SetProvisioner(s string)
- func (p *PKI) TellPKI()
- func (p *PKI) WriteRootCertificate(rootCrt *stepX509.Certificate, rootKey interface{}, pass []byte) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetConfigPath ¶
func GetConfigPath() string
GetConfigPath returns the directory where the configuration files are stored based on the STEPPATH environment variable.
func GetOTTKeyPath ¶
func GetOTTKeyPath() string
GetOTTKeyPath returns the path where the ont-time token key is stored based on the STEPPATH environment variable.
func GetProvisionerKey ¶
GetProvisionerKey returns the encrypted provisioner key with the for the given kid.
func GetProvisioners ¶
func GetProvisioners(caURL, rootFile string) ([]*authority.Provisioner, error)
GetProvisioners returns the map of provisioners on the given CA.
func GetPublicPath ¶
func GetPublicPath() string
GetPublicPath returns the directory where the public keys are stored based on the STEPPATH environment variable.
func GetRootCAPath ¶
func GetRootCAPath() string
GetRootCAPath returns the path where the root CA is stored based on the STEPPATH environment variable.
func GetSecretsPath ¶
func GetSecretsPath() string
GetSecretsPath returns the directory where the private keys are stored based on the STEPPATH environment variable.
Types ¶
type PKI ¶
type PKI struct {
// contains filtered or unexported fields
}
PKI represents the Public Key Infrastructure used by a certificate authority.
func (*PKI) GenerateIntermediateCertificate ¶
func (p *PKI) GenerateIntermediateCertificate(name string, rootCrt *stepX509.Certificate, rootKey interface{}, pass []byte) error
GenerateIntermediateCertificate generates an intermediate certificate with the given name.
func (*PKI) GenerateKeyPairs ¶
GenerateKeyPairs generates the key pairs used by the certificate authority.
func (*PKI) GenerateRootCertificate ¶
func (p *PKI) GenerateRootCertificate(name string, pass []byte) (*stepX509.Certificate, interface{}, error)
GenerateRootCertificate generates a root certificate with the given name.
func (*PKI) Save ¶
Save stores the pki on a json file that will be used as the certificate authority configuration.
func (*PKI) SetAddress ¶
SetAddress sets the listening address of the CA.
func (*PKI) SetDNSNames ¶
SetDNSNames sets the dns names of the CA.
func (*PKI) SetProvisioner ¶
SetProvisioner sets the provisioner name of the OTT keys.
func (*PKI) TellPKI ¶
func (p *PKI) TellPKI()
TellPKI outputs the locations of public and private keys generated generated for a new PKI. Generally this will consist of a root certificate and key and an intermediate certificate and key.
func (*PKI) WriteRootCertificate ¶
func (p *PKI) WriteRootCertificate(rootCrt *stepX509.Certificate, rootKey interface{}, pass []byte) error
WriteRootCertificate writes to disk the given certificate and key.