A rust crate for generating TOTP codes (tokens) defined in RFC 6238.
otpauth://totp/
) (the oathuri
feature gate).key
from base32-encoded string (the oathuri
feature gate).This implementation does NOT consider the time earlier than the
Unix epoch (1970-01-01T00:00:00Z
).
```rust use totprfc6238::{HashAlgorithm, TotpGenerator}; fn main() { let key = b"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890+/"; // Create a non-standard TOTP code generator: 8-digit, updating every 60 // seconds, starting at "Jan 01 1970 00:16:40 UTC", using HMAC-SHA512. let mut totpgenerator = TotpGenerator::new() .setdigit(8).unwrap() .setstep(60).unwrap() .sett0(1000) .sethash_algorithm(HashAlgorithm::SHA512) .build();
let output1 = totp_generator.get_code(key);
println!("Your TOTP code for current time is: {}", output1);
let output2 = totp_generator.get_next_update_time().unwrap();
println!("Next update will be at the unix timestamp of {}", output2);
let output3 = totp_generator.get_code_window(key, -5..=5).unwrap();
println!("Codes for 5 minutes earlier or later are:");
for i in output3 {
println!(" {}", i);
}
} ```
See here.
The version number lower than 1.0.0
should be regarded as an unstable version
of the API. Therefore, some version updates may contain incompatible API
changes. Please refer to the following when changing the dependent version.
* v0.4.2 -> v0.5.0: The data types of errors has changed. (only affects the
oathuri
feature)
* v0.3.1 -> v0.4.0: The data types of errors and function names has changed.
(only affects the oathuri
feature)
* v0.2.0 -> v0.3.0: In the percent-encoding, the characters that need to be
escaped have changed. (only affects the oathuri
feature)
The codes of this crate has not been audited.
This tool is primarily distributed under the terms of both the MIT license
and the Apache License (Version 2.0), with portions covered by various
BSD-like licenses.
See LICENSE-APACHE, LICENSE-MIT for details.