# Simple2FA
Simple2FA is a library to easily add two-factor authentication to your app.
```rust
use simple2fa;
use simple2fa::create_url_encoded_qrcode;
// This represnts a user in your database.
struct User {
pub otp_secret: String,
pub name: String,
}
fn main() {
// Save this to your database.
let user = User {
name: "Marie Curie".to_string(),
otp_secret: simple2fa::generate_secret()
};
// Use this function or `create_png_qrcode` to generate a png file.
let qrcode_data_url = create_urlencoded_qrcode("My web app", user.name, user.otp_secret);
// The QR code is a data url, so you can render it inline on a web page.
println!(r#"
"#, qrcode_data_url);
// Ask the user to scan the QR code with an authenticator app,
// and request a code to confirm they have setup 2FA.
if simple2fa.check_2fa_code(user.otp_secret, "") {
// 2FA is setup!
} else {
// Something went wrong setting up 2FA. Have the user submit a code again.
}
// When the user logs in, validate their password, then respond with
// the user_id as a hidden input field and request a 2FA code.
if simple2fa.check_2fa_code(user.otp_secret, "") {
// Log in successful
} else {
// Log in failed. Ask user re-enter an otp code or reject their login attempt.
}
}
```
# Installation
Add `simple2fa` to your `Cargo.toml`:
[dependencies]
simple2fa = "0.1.0"
If you have `cargo-edit`, you can use the command line:
cargo add simple2fa
Simple2FA is also available in other languages:
# Development
Development commands are described in the `Justfile`.
# Appreciation
Thank you to:
- [@fosskers](https://github.com/fosskers) for the Rust [totp-lite](https://github.com/fosskers/totp-lite) library,
which this library depends on. `totp-lite` beat similar Rust libraries in benchmarking.
- The [neon](https://neon-bindings.com/) project, which makes creating Node libraries painless.
- The [pyo3](https://pyo3.rs/) project, which makes creating Python libraries painless.