rusotp 0.5.0

Rust implementation of the HOTP and TOTP algorithms
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (c) Indrajit Roy
//
// This file is licensed under the Affero General Public License version 3 or
// any later version.
//
// See the file LICENSE for details.

pub mod algorithm;

pub(crate) mod base;
pub(crate) mod hotp;
pub(crate) mod totp;