totp-rs/README.md

56 lines
1.3 KiB
Markdown
Raw Normal View History

2020-04-11 15:24:50 -04:00
# totp-rs
2020-06-22 11:16:42 -04:00
![Build Status](https://github.com/constantoine/totp-rs/workflows/Rust/badge.svg) ![docs](https://docs.rs/totp-rs/badge.svg)
2020-04-11 15:24:50 -04:00
2020-06-21 09:57:16 -04:00
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! With additional feature "qr", you can use it to generate a base64 png qrcode.
2020-04-11 15:24:50 -04:00
## How to use
2020-04-11 19:08:38 -04:00
Add it to your `Cargo.toml`:
2020-04-11 15:24:50 -04:00
```toml
2020-04-13 10:59:30 -04:00
[dependencies]
2020-06-22 11:02:02 -04:00
totp-rs = "~0.4"
2020-04-11 15:24:50 -04:00
```
2020-04-13 16:57:06 -04:00
You can then do something like:
```Rust
use std::time::SystemTime;
2020-06-21 09:57:16 -04:00
use totp_rs::{Algorithm, TOTP};
2020-04-13 16:57:06 -04:00
2020-06-21 09:57:16 -04:00
let totp = TOTP::new(
Algorithm::SHA1,
6,
1,
30,
"supersecret".to_owned().into_bytes(),
2020-06-21 09:57:16 -04:00
);
let time = SystemTime::now()
.duration_since(SystemTime::UNIX_EPOCH).unwrap()
.as_secs();
let url = totp.get_url("user@example.com", "my-org.com");
2020-04-13 16:57:06 -04:00
println!("{}", url);
let token = totp.generate(time);
println!("{}", token);
```
2020-06-21 09:57:16 -04:00
### With qrcode generation
Add it to your `Cargo.toml`:
```toml
[dependencies.totp-rs]
2020-06-22 11:02:02 -04:00
version = "~0.4"
2020-06-21 09:57:16 -04:00
features = ["qr"]
```
You can then do something like:
```Rust
use totp_rs::{Algorithm, TOTP};
let totp = TOTP::new(
Algorithm::SHA1,
6,
1,
30,
"supersecret".to_owned().into_bytes(),
2020-06-21 09:57:16 -04:00
);
let code = totp.get_qr("user@example.com", "my-org.com")?;
2020-06-21 09:57:16 -04:00
println!("{}", code);
```