aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2021-10-23 01:55:51 +0700
committerShulhan <ms@kilabit.info>2021-10-27 22:21:17 +0700
commitc814416265b73823c215c04f5656471b84116e19 (patch)
tree8f89e8abc7d84e5621cfd882a6c11659767096f5 /go.mod
downloadgotp-c814416265b73823c215c04f5656471b84116e19.tar.xz
gotp: command line interface for Time-based One Time Password (TOTP)
The gotp currently has the following features, * add: add new TOTP issuer with their label and secret * gen: generate password * import: import TOTP from other provider, currently support Aegis * list: print all registered TOTP configuration by labels * remove: delete a TOTP configuration from file by label * rename: changes the TOTP configuration by its label
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod15
1 files changed, 15 insertions, 0 deletions
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..adc287a
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,15 @@
+module git.sr.ht/~shulhan/gotp
+
+go 1.17
+
+require (
+ github.com/shuLhan/share v0.30.1-0.20211026162333-a7fd63a0836f
+ golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
+)
+
+require (
+ golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac // indirect
+ golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
+)
+
+//replace github.com/shuLhan/share => ../share