[][src]Struct google_authenticator::google_authenticator::GoogleAuthenticator

pub struct GoogleAuthenticator { /* fields omitted */ }

Methods

impl GoogleAuthenticator[src]

pub fn new() -> GoogleAuthenticator[src]

pub fn create_secret(&self, length: u8) -> String[src]

Create new secret. characters, randomly chosen from the allowed base32 characters.

Example:

 use google_authenticator::GoogleAuthenticator;

 let google_authenticator = GoogleAuthenticator::new();
 google_authenticator.create_secret(32);

pub fn get_code(
    &self,
    secret: &str,
    times_slice: i64
) -> Result<String, GAError>
[src]

Calculate the code, with given secret and point in time.

Example:

     use google_authenticator::GoogleAuthenticator;

     let google_authenticator = GoogleAuthenticator::new();
     google_authenticator.get_code("I3VFM3JKMNDJCDH5BMBEEQAW6KJ6NOE3", 1523610659 / 30).unwrap();

secret : user secret, it will verify each user. times_slice : unix_timestamp / 30 ,if give 0, it will system unix_timestamp

pub fn verify_code(
    &self,
    secret: &str,
    code: &str,
    discrepancy: i64,
    time_slice: i64
) -> Result<bool, GAError>
[src]

Check if the code is correct. secret use for verify user code the code to verify discrepancy This will accept codes starting from discrepancy*30sec ago to discrepancy*30sec from now. time_slice if give 0, it will system unix_timestamp

     use google_authenticator::GoogleAuthenticator;

     let google_authenticator = GoogleAuthenticator::new();
     google_authenticator.verify_code("I3VFM3JKMNDJCDH5BMBEEQAW6KJ6NOE3", "224124", 3, 1523610659 / 30).unwrap();

pub fn qr_code_url(
    &self,
    secret: &str,
    name: &str,
    title: &str,
    width: u16,
    height: u16,
    level: char
) -> String
[src]

Get QR-Code URL for image, from google charts. width: width of the qrcode. default value 200 px height: height of the qrcode. default value 200 px level: the qrcode level ,it will be L,M,Q,H. Default value is M

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]