mirror of
https://github.com/smallstep/certificates.git
synced 2024-10-31 03:20:16 +00:00
19 lines
363 B
Go
19 lines
363 B
Go
package templates
|
|
|
|
import (
|
|
"golang.org/x/crypto/ssh"
|
|
)
|
|
|
|
// Step represents the default variables available in the CA.
|
|
type Step struct {
|
|
SSH StepSSH
|
|
}
|
|
|
|
// StepSSH holds SSH-related values for the CA.
|
|
type StepSSH struct {
|
|
HostKey ssh.PublicKey
|
|
UserKey ssh.PublicKey
|
|
HostFederatedKeys []ssh.PublicKey
|
|
UserFederatedKeys []ssh.PublicKey
|
|
}
|