9 releases
0.1.1 | Sep 7, 2021 |
---|---|
0.1.0 | Aug 21, 2021 |
0.0.7 | Jul 24, 2021 |
#841 in Cryptography
23 downloads per month
25KB
420 lines
OOTP
OOTP (Open One-time Password) is a supports multiple programming languages. The generated one-time passwords are fully compliant with HOTP (HMAC-based One-time Password) and TOTP (Time-based One-time Password). πIt's easy to use!
Introduction
The OOTP for Rust library is a Rust implementation of the OOTP library.
Features
Installation
Add the following line to your Cargo.toml file:
[dependencies]
ootp = "0.0.6"
Get started
use ootp::*;
fn main() {
let secret = "Base32 decoded secret";
let totp = Totp::secret(
secret,
CreateOption::Default
);
let otp = totp.make(); // Generate a one-time password
println!("{}", otp); // Print the one-time password
}
Examples
Documentation
License
The OOTP for Rust library is licensed under the MIT license.
Dependencies
~2MB
~26K SLoC