[][src]Struct boringauth::oath::HOTP

pub struct HOTP { /* fields omitted */ }

Methods

impl HOTP[src]

pub fn generate(&self) -> String[src]

Generate the HOTP value.

Examples

let key_ascii = "12345678901234567890".to_owned();
let mut hotp = boringauth::oath::HOTPBuilder::new()
    .ascii_key(&key_ascii)
    .finalize()
    .unwrap();

let code = hotp.generate();
assert_eq!(code, "755224");
let code = hotp.increment_counter().generate();
assert_eq!(code, "287082");

pub fn increment_counter(&mut self) -> &mut HOTP[src]

Increments the internal counter.

pub fn is_valid(&self, code: &String) -> bool[src]

Checks if the given code is valid. This implementation uses the double HMAC verification in order to prevent a timing side channel attack.

Examples

let key_ascii = "12345678901234567890".to_owned();
let user_code = "755224".to_owned();
let valid = boringauth::oath::HOTPBuilder::new()
    .ascii_key(&key_ascii)
    .finalize()
    .unwrap()
    .is_valid(&user_code);
assert_eq!(valid, true);

Auto Trait Implementations

impl Send for HOTP

impl Sync for HOTP

Blanket Implementations

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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