aboutsummaryrefslogtreecommitdiff
path: root/provider_aegis.go
diff options
context:
space:
mode:
Diffstat (limited to 'provider_aegis.go')
-rw-r--r--provider_aegis.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/provider_aegis.go b/provider_aegis.go
index bdc71ec..2429b86 100644
--- a/provider_aegis.go
+++ b/provider_aegis.go
@@ -11,6 +11,13 @@ import (
"strconv"
)
+// parseProviderAegis parse the [Aegis Authenticator] exported file in the
+// URI format.
+// The URI scheme has the following format,
+//
+// otpauth://totp/<LABEL>?period=&digits=&algorithm=&secret=&issuer=
+//
+// [Aegis Authenticator]: https://getaegis.app/
func parseProviderAegis(file string) (issuers []*Issuer, err error) {
var (
logp = `parseProviderAegis`