Documentation ¶
Index ¶
- Variables
- func BuildPrincipals(hostID string, nodeName string, clusterName string, roles teleport.Roles) []string
- func GenerateKeyPair(passphrase string) ([]byte, []byte, error)
- type Keygen
- func (k *Keygen) Close()
- func (k *Keygen) GenerateHostCert(c services.HostCertParams) ([]byte, error)
- func (k *Keygen) GenerateKeyPair(passphrase string) ([]byte, []byte, error)
- func (k *Keygen) GenerateUserCert(c services.UserCertParams) ([]byte, error)
- func (k *Keygen) GetNewKeyPairFromPool() ([]byte, []byte, error)
- type KeygenOption
Constants ¶
This section is empty.
Variables ¶
var PrecomputedNum = 25
PrecomputedNum is the number of keys to precompute and keep cached.
Functions ¶
func BuildPrincipals ¶
func BuildPrincipals(hostID string, nodeName string, clusterName string, roles teleport.Roles) []string
BuildPrincipals takes a hostID, nodeName, clusterName, and role and builds a list of principals to insert into a certificate. This function is backward compatible with older clients which means:
- If RoleAdmin is in the list of roles, only a single principal is returned: hostID
- If nodename is empty, it is not included in the list of principals.
Types ¶
type Keygen ¶
type Keygen struct {
// contains filtered or unexported fields
}
keygen is a key generator that precomputes keys to provide quick access to public/private key pairs.
func (*Keygen) Close ¶
func (k *Keygen) Close()
Close stops the precomputation of keys (if enabled) and releases all resources.
func (*Keygen) GenerateHostCert ¶
func (k *Keygen) GenerateHostCert(c services.HostCertParams) ([]byte, error)
GenerateHostCert generates a host certificate with the passed in parameters. The private key of the CA to sign the certificate must be provided.
func (*Keygen) GenerateKeyPair ¶
GenerateKeyPair returns fresh priv/pub keypair, takes about 300ms to execute.
func (*Keygen) GenerateUserCert ¶
func (k *Keygen) GenerateUserCert(c services.UserCertParams) ([]byte, error)
GenerateUserCert generates a host certificate with the passed in parameters. The private key of the CA to sign the certificate must be provided.
type KeygenOption ¶
KeygenOption is a functional optional argument for key generator
func PrecomputeKeys ¶
func PrecomputeKeys(count int) KeygenOption
PrecomputeKeys sets up a number of private keys to pre-compute in background, 0 disables the process