Hash :
d54f8659
Author :
Date :
2022-05-06T17:35:49
Git HTTP | https://git.kmx.io/thodg/totp-rs.git |
---|---|
Git SSH | git@git.kmx.io:thodg/totp-rs.git |
Public access ? | public |
Description |
TOTP for Rust by constantoine. |
Users |
|
Tags |
|
This library permits the creation of 2FA authentification tokens per TOTP, the verification of said tokens, with configurable time skew, validity time of each token, algorithm and number of digits! Default features are kept as lightweight as possible to ensure small binaries and short compilation time
Be aware that some authenticator apps will accept the SHA256
and SHA512
algorithms but silently fallback to SHA1
which will make the check()
function fail due to mismatched algorithms.
With optional feature “qr”, you can use it to generate a base64 png qrcode
With optional feature “serde_support”, library-defined types will be Deserialize-able and Serialize-able
Add it to your Cargo.toml
:
[dependencies]
totp-rs = "~1.2"
You can then do something like:
use std::time::SystemTime;
use totp_rs::{Algorithm, TOTP};
let totp = TOTP::new(
Algorithm::SHA1,
6,
1,
30,
"supersecret",
);
let time = SystemTime::now()
.duration_since(SystemTime::UNIX_EPOCH).unwrap()
.as_secs();
let url = totp.get_url("user@example.com", "my-org.com");
println!("{}", url);
let token = totp.generate(time);
println!("{}", token);
Add it to your Cargo.toml
:
[dependencies.totp-rs]
version = "~1.2"
features = ["qr"]
You can then do something like:
use totp_rs::{Algorithm, TOTP};
let totp = TOTP::new(
Algorithm::SHA1,
6,
1,
30,
"supersecret",
);
let code = totp.get_qr("user@example.com", "my-org.com")?;
println!("{}", code);
Add it to your Cargo.toml
:
[dependencies.totp-rs]
version = "~1.2"
features = ["serde_support"]