This Rust crate can be used to interact with the Google Authenticator mobile app for 2-factor-authentication.This Rust crates can generate secrets, generate codes, validate codes and present a QR-Code for scanning the secret.It implements TOTP according to RFC6238 More about Google GoogleAuthenticator see:Wiki
Add this to your Cargo.toml
:
toml
[dependencies]
google-authenticator = "0.4.0"
You can find the header file from src/authenticator.h, and then build the lib for your target.
How to make header file and build lib, you can refer to the following case.
Tools you may need: rust-lipo cbingen
```shell
cbindgen ./ -l c --output src/authenticator.h
```
```shell
cargo lipo --features with-qrcode --targets aarch64-apple-darwin x86_64-apple-darwin aarch64-apple-ios
cargo build --all-features --lib --release --target x86_64-unknown-linux-musl
```
```rust use google_authenticator::GoogleAuthenticator;
fn main() { let secret = "I3VFM3JKMNDJCDH5BMBEEQAW6KJ6NOE3"; let auth = GoogleAuthenticator::new(); // let secret = auth.createsecret(32); let code = auth.getcode(&secret, 0).unwrap();
assert!(auth.verify_code(&secret, &code, 1, 0).unwrap());
} ```
```rust
extern crate googleauthenticator; use googleauthenticator::GA_AUTH;
fn main() { let secret = "I3VFM3JKMNDJCDH5BMBEEQAW6KJ6NOE3"; if let Ok(code) = getcode!(&secret) { println!("{}", verifycode!(&secret, &code, 1, 0)); } } ```
```rust use google_authenticator::{GoogleAuthenticator, ErrorCorrectionLevel};
fn main() { let auth = GoogleAuthenticator::new(); let secret = "I3VFM3JKMNDJCDH5BMBEEQAW6KJ6NOE3"; println!( "{}", auth.qrcodeurl(secret, "qr_code", "name", 200, 200, ErrorCorrectionLevel::High) ); } ```
```rust
extern crate googleauthenticator; use googleauthenticator::GA_AUTH;
fn main() { let secret = "I3VFM3JKMNDJCDH5BMBEEQAW6KJ6NOE3"; println!("{}", qrcodeurl!(&secret, "qr_code", "name")); } ```
Change Cargo.toml
to
toml
[dependencies.google-authenticator]
version = "0.1.9"
features = ["with-qrcode"]
```rust use google_authenticator::{GoogleAuthenticator, ErrorCorrectionLevel};
fn main() { let secret = "I3VFM3JKMNDJCDH5BMBEEQAW6KJ6NOE3"; let auth = GoogleAuthenticator::new();
println!(
"{}",
auth.qr_code(secret, "qr_code", "name", 200, 200, ErrorCorrectionLevel::High)
.unwrap()
);
} ```
```rust
extern crate googleauthenticator; use googleauthenticator::GA_AUTH;
fn main() { let secret = "I3VFM3JKMNDJCDH5BMBEEQAW6KJ6NOE3"; if let Ok(url) = qrcode!(&secret, "qrcode", "name") { println!("{}", url); } } ```
You can post a new issue for help.