Edit

thodg/totp-rs/examples

Branch :

  • Show log

    Commit

  • Author : Steven Salaun
    Date : 2022-08-06 17:31:11
    Hash : 6623af9d
    Message : Rfc6238 struct

  • rfc-6238.rs
  • use totp_rs::{Rfc6238, TOTP};
    
    fn main () {
        let mut rfc = Rfc6238::with_defaults(
            "totp-sercret-123"
        ).unwrap();
    
        // optional, set digits, issuer, account_name
        rfc.digits(8).unwrap();
        rfc.issuer("issuer".to_string());
        rfc.account_name("user-account".to_string());
    
        // create a TOTP from rfc
        let totp = TOTP::from_rfc6238(rfc).unwrap();
        let code = totp.generate_current().unwrap();
        println!("code: {}", code);
    }