ruotp 0.0.1

RFC-complaint one-time password algorithms written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
mod algorithm;
mod error;
mod hotp;
mod totp;
mod utils;

pub use algorithm::Algorithm;
pub use error::OTPError;
pub use hotp::HOTP;
pub use totp::TOTP;