mirror of
https://github.com/smallstep/certificates.git
synced 2024-10-31 03:20:16 +00:00
10 lines
148 B
Go
10 lines
148 B
Go
package policy
|
|
|
|
import (
|
|
"golang.org/x/crypto/ssh"
|
|
)
|
|
|
|
type SSHNamePolicyEngine interface {
|
|
IsSSHCertificateAllowed(cert *ssh.Certificate) error
|
|
}
|