steam_guard 1.0.1

A Simple TOTP crate intended for steam guard authentication
Documentation
  • Coverage
  • 66.67%
    4 out of 6 items documented1 out of 6 items with examples
  • Size
  • Source code size: 6.91 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.17 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 11s Average build duration of successful builds.
  • all releases: 11s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • SFort/steam_guard
    3 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • SFort

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));