rotp

Crates.iorotp
lib.rsrotp
version0.2.1
sourcesrc
created_at2020-12-04 07:36:47.005133
updated_at2023-12-21 22:35:02.373244
descriptionA simple command line HOTP and TOTP generator
homepagehttps://github.com/acheronfail/rotp
repositoryhttps://github.com/acheronfail/rotp
max_upload_size
id319570
size38,839
(acheronfail)

documentation

README

(ROTP) Rust One Time Passwords

A simple HOTP and TOTP generator.

rotp 0.1.1
acheronfail <acheronfail@gmail.com>

USAGE:
    rotp <SUBCOMMAND>

FLAGS:
    -h, --help       Prints help information
    -V, --version    Prints version information

SUBCOMMANDS:
    help    Prints this message or the help of the given subcommand(s)
    hotp    Generate a HOTP code
    totp    Generate a TOTP code

Installation

cargo install rotp

Examples

# Your OTP base32 encoded secret
export BASE32_SECRET="ALLYOURBASEAREBELONGTOUS"

# HOTP
rotp hotp --secret "$BASE32_SECRET" --counter 0    # 173468
rotp hotp --secret "$BASE32_SECRET" --counter 1    # 676177
rotp hotp --secret "$BASE32_SECRET" --counter 1729 # 102510

# TOTP
rotp totp --secret "$BASE32_SECRET" --time 30   --skew  0 # 173468
rotp totp --secret "$BASE32_SECRET" --time 3600 --skew  0 # 173468
rotp totp --secret "$BASE32_SECRET" --time 30   --skew  0 # 676177
rotp totp --secret "$BASE32_SECRET" --time 1    --skew -2 # 102510

# Alternatively, arguments may be passed via STDIN:
echo hotp --secret "$BASE32_SECRET" --counter 1729     | rotp # 102510
echo totp --secret "$BASE32_SECRET" --time 1 --skew -2 | rotp # 102510
Commit count: 15

cargo fmt