summaryrefslogtreecommitdiff
path: root/auth.go
diff options
context:
space:
mode:
Diffstat (limited to 'auth.go')
-rw-r--r--auth.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/auth.go b/auth.go
new file mode 100644
index 0000000..5c2df14
--- /dev/null
+++ b/auth.go
@@ -0,0 +1,9 @@
+package mt
+
+type AuthMethods uint32
+
+const (
+ LegacyPasswd AuthMethods = 1 << iota
+ SRP
+ FirstSRP
+)