oath 0.1.2

An pure Rust implementation of OATH algorithms. Currently provides HOTP and TOTP; OCRA is in progress.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]

name = "oath"
version = "0.1.2"
authors = ["Andrei Vacariu <andrei@avacariu.me>"]
license = "MIT"
description = """
An pure Rust implementation of OATH algorithms. Currently provides HOTP and
TOTP; OCRA is in progress.
"""
homepage = "https://github.com/vlad003/rust-oath"
repository = "https://github.com/vlad003/rust-oath"
keywords = ["oath", "totp", "hotp", "ocra"]

[dependencies]
rust-crypto = "*"
rustc-serialize = "*"
time = "*"