summaryrefslogtreecommitdiff
path: root/auth.go
blob: 5c2df1498021ec81f1693effabf5ec76e108e52e (plain) (blame)
1
2
3
4
5
6
7
8
9
package mt

type AuthMethods uint32

const (
	LegacyPasswd AuthMethods = 1 << iota
	SRP
	FirstSRP
)