rusotp 0.5.0

Rust implementation of the HOTP and TOTP algorithms
Documentation
// 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.

mod otp;
mod r#type;
mod util;

pub mod ffi;

pub use otp::algorithm::Algorithm;
pub use otp::algorithm::AlgorithmTrait;
pub use otp::hotp::HOTP;
pub use otp::totp::TOTP;
pub use r#type::otp_error::*;
pub use r#type::radix::*;
pub use r#type::secret::*;
pub use util::qr_code::generate_qr_code_string;
pub use util::qr_code::generate_qr_code_image;