steam_guard

Crates.iosteam_guard
lib.rssteam_guard
version1.0.1
sourcesrc
created_at2019-12-18 06:52:29.960302
updated_at2019-12-18 07:05:15.764238
descriptionA Simple TOTP crate intended for steam guard authentication
homepage
repositoryhttps://github.com/SFort/steam_guard
max_upload_size
id190198
size6,916
(SFort)

documentation

https://docs.rs/crate/steam_guard

README

steam_guard

Is used to easily get steam guards authentication code. provided you have the shared secret

Usage:

extern crate steam_guard;
let secret = "123123123Ab=";
println!("Expires in:{}s", steam_guard::expires_in_sec());
println!("Login with:{:?}", steam_guard::from_secret(secret));
println!("Next login code:{:?}", steam_guard::from_secret_future(secret, 1));

Commit count: 7

cargo fmt