certificates/policy/ssh.go

10 lines
148 B
Go
Raw Normal View History

2022-01-17 23:36:13 +01:00
package policy
import (
"golang.org/x/crypto/ssh"
)
type SSHNamePolicyEngine interface {
2022-04-26 13:12:16 +02:00
IsSSHCertificateAllowed(cert *ssh.Certificate) error
2022-01-17 23:36:13 +01:00
}