certificates/templates/values.go

19 lines
363 B
Go
Raw Normal View History

package templates
import (
"golang.org/x/crypto/ssh"
)
// Step represents the default variables available in the CA.
type Step struct {
SSH StepSSH
}
2020-02-07 14:42:56 -05:00
// StepSSH holds SSH-related values for the CA.
type StepSSH struct {
2019-10-11 19:26:59 -07:00
HostKey ssh.PublicKey
UserKey ssh.PublicKey
HostFederatedKeys []ssh.PublicKey
UserFederatedKeys []ssh.PublicKey
}