pub struct GoogleAuthenticator { /* private fields */ }
Expand description

The main interface of this library. It exports several function that are necessary to interface with google authenticator.

Implementations§

source§

impl GoogleAuthenticator

source

pub fn new() -> Self

Create a new GoogleAuthenticator using the default implementation. This means that the codes generated have a length of 6 and the secret will be chosen from allowed base32 characters.

Example
use google_authenticator::GoogleAuthenticator;

let auth = GoogleAuthenticator::new();
source

pub fn with_code_length(self, code_length: usize) -> Self

Use this method to configure the length of the generated code.

Example
use google_authenticator::GoogleAuthenticator;

let auth = GoogleAuthenticator::new()
    .with_code_length(8);
source

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

Create new secret.

Example:

use google_authenticator::GoogleAuthenticator;

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

pub fn get_code(&self, secret: &str, times_slice: u64) -> Result<String>

Calculate the code, with given secret and point in time. The secret parameter is the secret configured for this user. The times_slice parameter is the unix timestamp divided by 30 at which the code should expire.

Example
use google_authenticator::GoogleAuthenticator;

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

pub fn verify_code( &self, secret: &str, code: &str, discrepancy: u64, time_slice: u64 ) -> bool

This function verifies that a provided code is correct. The parameter secret is used to verify the user. code is the code that will be verified. The parameter discrepancy indicates number of seconds ago that a code may be generated. time_slice is used to modify what the current time is, as a unix timestamp. If 0 is provided here, the current time will be used.

Example
use google_authenticator::GoogleAuthenticator;

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

pub fn qr_code_url( &self, secret: &str, name: &str, title: &str, width: u32, height: u32, level: ErrorCorrectionLevel ) -> String

Get QR-Code URL for image, from google charts. For the height and width, if a value of 0 is provided, the default of 200px is used. Level is the amount of fault tolerance that the QR code should accept, see this page for more information.

Example
use google_authenticator::{GoogleAuthenticator, ErrorCorrectionLevel};

let authenticator = GoogleAuthenticator::new();
authenticator.qr_code_url(
    "I3VFM3JKMNDJCDH5BMBEEQAW6KJ6NOE3",
    "your company name",
    "hello",
    0,
    0,
    ErrorCorrectionLevel::Medium,
);

Trait Implementations§

source§

impl Default for GoogleAuthenticator

source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V