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