Edit

thodg/totp-rs/README.md

Branch :

  • Show log

    Commit

  • Author : Cleo Rebert
    Date : 2022-04-24 16:41:56
    Hash : 1f1e1a6f
    Message : Add constant-time token comparison and partialEq trait Add PartialEq for TOTP<T> and PartialEq+Eq for Algorithm

  • README.md
  • # totp-rs
    ![Build Status](https://github.com/constantoine/totp-rs/workflows/Rust/badge.svg) [![docs](https://docs.rs/totp-rs/badge.svg)](https://docs.rs/totp-rs) [![](https://img.shields.io/crates/v/totp-rs.svg)](https://crates.io/crates/totp-rs) [![codecov](https://codecov.io/gh/constantoine/totp-rs/branch/master/graph/badge.svg?token=Q50RAIFVWZ)](https://codecov.io/gh/constantoine/totp-rs) [![cargo-audit](https://github.com/constantoine/totp-rs/actions/workflows/security.yml/badge.svg)](https://github.com/constantoine/totp-rs/actions/workflows/security.yml)
    
    This library permits the creation of 2FA authentification tokens per TOTP, the verification of said tokens, with configurable time skew, validity time of each token, algorithm and number of digits! Default features are kept as lightweight as possible to ensure small binaries and short compilation time
    
    Be aware that some authenticator apps will accept the `SHA256` and `SHA512` algorithms but silently fallback to `SHA1` which will make the `check()` function fail due to mismatched algorithms.
    
    ## Features
    ---
    ### qr
    With optional feature "qr", you can use it to generate a base64 png qrcode
    ### serde_support
    With optional feature "serde_support", library-defined types will be Deserialize-able and Serialize-able
    
    ## How to use
    ---
    Add it to your `Cargo.toml`:
    ```toml
    [dependencies]
    totp-rs = "~1.1"
    ```
    You can then do something like:
    ```Rust
    use std::time::SystemTime;
    use totp_rs::{Algorithm, TOTP};
    
    let totp = TOTP::new(
        Algorithm::SHA1,
        6,
        1,
        30,
        "supersecret",
    );
    let time = SystemTime::now()
        .duration_since(SystemTime::UNIX_EPOCH).unwrap()
        .as_secs();
    let url = totp.get_url("user@example.com", "my-org.com");
    println!("{}", url);
    let token = totp.generate(time);
    println!("{}", token);
    ```
    
    ### With qrcode generation
    
    Add it to your `Cargo.toml`:
    ```toml
    [dependencies.totp-rs]
    version = "~1.1"
    features = ["qr"]
    ```
    You can then do something like:
    ```Rust
    use totp_rs::{Algorithm, TOTP};
    
    let totp = TOTP::new(
        Algorithm::SHA1,
        6,
        1,
        30,
        "supersecret",
    );
    let code = totp.get_qr("user@example.com", "my-org.com")?;
    println!("{}", code);
    ```
    
    ### With serde support
    Add it to your `Cargo.toml`:
    ```toml
    [dependencies.totp-rs]
    version = "~1.1"
    features = ["serde_support"]
    ```