diff options
| author | Shulhan <ms@kilabit.info> | 2024-06-22 17:32:55 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2024-06-22 17:32:55 +0700 |
| commit | d08e28f6698ee35827e52903032a36a4f1354878 (patch) | |
| tree | 2fd911ca7fd611a5b1d40f8325a4eed4fd6a87d6 /gotp.go | |
| parent | dbe4f9722bbd63f685b36606abbfd97cbf1dfb10 (diff) | |
| download | gotp-0.6.0.tar.xz | |
Release gotp v0.6.0 (2024-06-22)v0.6.0
=== New features
all: implement command "export"::
The "export" command export all issuers to file or standard output,
$ gotp export <FORMAT> [FILE]
List of known supported FORMAT is: uri. If FILE is not defined it
will print to standard output. The list of exported issuers are
printed in order of its label.
=== Bug fix
Fix "gen" command due to lower case secret::
Sometimes, provider provide base32 of secret in lowercase.
But, to decode it, all of the characters must be in upper case
otherwise it will be failed.
Diffstat (limited to 'gotp.go')
| -rw-r--r-- | gotp.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -37,7 +37,7 @@ const ( ) // Version define the latest version of this module and gotp CLI. -var Version = `0.5.0` +var Version = `0.6.0` // termrw define terminal for reading passphrase. // It is defined to mock parameter termrw in |
