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

type AuthMethods uint32

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

//go:generate stringer -type AuthMethods