otp-std 0.2.3

Generating and verifying One-Time Passwords.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! One-Time Password authentication.

pub mod core;
pub mod label;
pub mod part;
pub mod query;
pub mod scheme;
pub mod url;
pub mod utf8;

pub use core::{Auth, Owned};
pub use label::{Label, Owned as OwnedLabel};
pub use part::{Owned as OwnedPart, Part};
pub use scheme::SCHEME;
pub use url::Url;