Crates.io | rustotpony |
lib.rs | rustotpony |
version | 0.5.4 |
source | src |
created_at | 2018-06-15 22:07:12.738346 |
updated_at | 2024-10-28 17:57:49.650215 |
description | Manager of one-time password generators |
homepage | https://github.com/zebradil/rustotpony |
repository | https://github.com/zebradil/rustotpony |
max_upload_size | |
id | 70293 |
size | 3,437,573 |
CLI manager of time-based one-time password generators. It is a desktop alternative to Google Authenticator.
Packages, available in AUR:
Grab an appropriate binary from the latest release and put it
in a place of your choice. If you're on the *nix system, don't forget to set proper permissions: chmod +x totp
.
Make sure you have $HOME/.cargo/bin
in your $PATH
.
cargo install rustotpony
cargo install
from the inside of the repo directoryProbably, you will need gcc
(Linux) or clang
(Mac OS) to compile dependencies.
$ totp help
🐴 RusTOTPony 0.3.2
Manager of one-time password generators
Usage: totp [COMMAND]
Commands:
dash Show realtime dashboard with all generators
list List all generators
add Add a new generator
delete Delete a generator
rename Rename a generator
eradicate Delete all generators
help Print this message or the help of the given subcommand(s)
Options:
-h, --help Print help information
-V, --version Print version information
On the first run, totp
will prompt you to create a password for a new database, which is stored at $HOME/.rustotpony/totp.safe
.
This database is encrypted using the password you provide with age-encryption.
If you forget the password or wish to change it, you will need to delete the database file. While this process is currently a bit inconvenient, I'm working on improving usability and will be adding a command to facilitate password changes in the future.
Retrieve a secret key from your TOTP provider (it must be encoded with base32, for example, GEZDGMZSGE2TKCQ=
)
$ # Creating a fake secret key for demo purposes
$ echo 123321555 | base32
GEZDGMZSGE2TKNIK
Add new generator with totp add <NAME>
(you will be asked for a secret and a password)
$ # Adding a new TOTP generator
$ totp add demo
Enter your secret code:
Enter your database pass:
New application created: demo
Use totp list
to check your secrets
$ # Listing all secrets in the database
$ totp list
Enter your database pass:
+------+------------------+----------+
| name | key | username |
+------+------------------+----------+
| demo | GEZDGMZSGE2TKNIK | |
+------+------------------+----------+
Use totp dash
or just totp
for real-time dashboard
$ # Display real-time dashboard with all generators
$ totp
Enter your database pass:
Welcome to RusTOTPony realtime dashboard! Press ^C to quit.
[============================================= ]
009216 demo
After hitting ^C it'll clean up the dashboard
$ totp
Enter your database pass:
I won't tell anyone about this 🤫
Licensed under the MIT License.