summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2022-02-08 01:27:12 +0700
committerShulhan <ms@kilabit.info>2022-02-08 01:27:12 +0700
commit538a9c3cc8f9ed34c5de55b51bb0e8700e2cc34e (patch)
treef65edafaa88a4a99a2102db3c7bfe33735fd29f9
parent8b9fefa14a555abd09254286d8a6ba713fcd73c7 (diff)
downloadgotp-0.1.0.tar.xz
Release gotp v0.1.0 (2022-02-08)v0.1.0
The first release of gotp, a command line interface to manage and generate Time-based One Time Password (TOTP). Features, * Add a TOTP secret identified by unique LABEL. * Generate N number passwords using the secret identified by LABEL. * Import the TOTP configuration from other provider. Currently, the only supported PROVIDER is Aegis and the supported file is .txt. * List all labels stored in the configuration. * Remove LABEL from configuration. * Rename a LABEL into NEW-LABEL. * Encrypted secret using RSA based private key.
-rw-r--r--CHANGELOG.adoc21
1 files changed, 21 insertions, 0 deletions
diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc
new file mode 100644
index 0000000..f5834b8
--- /dev/null
+++ b/CHANGELOG.adoc
@@ -0,0 +1,21 @@
+= gotp changelog
+Shulhan <ms@kilabit.info>
+:toc:
+:sectanchors:
+:sectlinks:
+
+== gotp v0.1.0 (2022-02-08)
+
+The first release of gotp, a command line interface to manage and generate
+Time-based One Time Password (TOTP).
+
+Features,
+* Add a TOTP secret identified by unique LABEL.
+* Generate N number passwords using the secret identified by LABEL.
+* Import the TOTP configuration from other provider.
+ Currently, the only supported PROVIDER is Aegis and the supported file
+ is .txt.
+* List all labels stored in the configuration.
+* Remove LABEL from configuration.
+* Rename a LABEL into NEW-LABEL.
+* Encrypted secret using RSA based private key.