slauth 0.3.0-alpha

oath HOTP and TOTP complient implementation
Documentation
1
2
3
4
5
6
7
8
9
10
use std::io::Read;
use std::collections::HashMap;
use std::sync::atomic::{AtomicU32, Ordering::SeqCst};

pub mod error;
pub mod proto;
pub mod client;

#[cfg(feature = "u2f-server")]
pub mod server;