[][src]Struct totp_rs::TOTP

pub struct TOTP {
    pub algorithm: Algorithm,
    pub digits: usize,
    pub skew: u8,
    pub step: u64,
    pub secret: Vec<u8>,
}

TOTP holds informations as to how to generate an auth code and validate it. Its secret field is sensitive data, treat it accordingly

Fields

algorithm: Algorithm

SHA-1 is the most widespread algorithm used, and for totp pursposes, SHA-1 hash collisions are not a problem as HMAC-SHA-1 is not impacted. It's also the main one cited in rfc-6238 even though the reference implementation permits the use of SHA-1, SHA-256 and SHA-512. Not all clients support other algorithms then SHA-1

digits: usize

The number of digits composing the auth code. Per rfc-4226, this can oscilate between 6 and 8 digits

skew: u8

Number of steps allowed as network delay. 1 would mean one step before current step and one step after are valids. The recommended value per rfc-6238 is 1. Anything more is sketchy, and anyone recommending more is, by definition, ugly and stupid

step: u64

Duration in seconds of a step. The recommended value per rfc-6238 is 30 seconds

secret: Vec<u8>

As per rfc-4226 the secret should come from a strong source, most likely a CSPRNG. It should be at least 128 bits, but 160 are recommended

Implementations

impl TOTP[src]

pub fn new(
    algorithm: Algorithm,
    digits: usize,
    skew: u8,
    step: u64,
    secret: Vec<u8>
) -> TOTP
[src]

Will create a new instance of TOTP with given parameters. See the doc for reference as to how to choose those values

pub fn sign(&self, time: u64) -> Vec<u8>[src]

Will sign the given timestamp

pub fn generate(&self, time: u64) -> String[src]

Will generate a token according to the provided timestamp in seconds

pub fn check(&self, token: String, time: u64) -> bool[src]

Will check if token is valid by current time, accounting skew

pub fn get_url(&self, label: String, issuer: String) -> String[src]

Will generate a standard URL used to automatically add TOTP auths. Usually used with qr codes

Trait Implementations

impl Clone for TOTP[src]

impl Debug for TOTP[src]

impl<'de> Deserialize<'de> for TOTP[src]

impl Serialize for TOTP[src]

Auto Trait Implementations

impl RefUnwindSafe for TOTP

impl Send for TOTP

impl Sync for TOTP

impl Unpin for TOTP

impl UnwindSafe for TOTP

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.