forked from TrueCloudLab/certificates
9 lines
156 B
Go
9 lines
156 B
Go
package policy
|
|
|
|
import (
|
|
"golang.org/x/crypto/ssh"
|
|
)
|
|
|
|
type SSHNamePolicyEngine interface {
|
|
IsSSHCertificateAllowed(cert *ssh.Certificate) (bool, error)
|
|
}
|