totp-rs/README.md

12 lines
298 B
Markdown
Raw Normal View History

2020-04-11 15:24:50 -04:00
# totp-rs
2020-04-13 10:59:30 -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!
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]
totp-rs = "~0.2"
2020-04-11 15:24:50 -04:00
```