[][src]Struct alexa_verifier::RequestVerifier

pub struct RequestVerifier { /* fields omitted */ }

Exposes verify method and caches new certificates on the first request

Methods

impl RequestVerifier[src]

pub fn new() -> Self[src]

Create default instance with an empty cache

pub fn verify(
    &mut self,
    signature_cert_chain_url: &str,
    signature: &str,
    body: &[u8],
    timestamp: &str,
    timestamp_tolerance_millis: Option<u64>
) -> Result<(), Error>
[src]

Verify that the request came from Alexa.

  • SignatureCertChainUrl and Signature are headers of the request

  • Pass the entire body of the request for signature verification

  • Timestamp comes from the body, { "request" : { "timestamp": "" } }. If deserialized using alexa_sdk then timestamp can be taken from alexa_sdk::Request.body.timestamp

  • A tolerance value in milliseconds can be passed to verify the request was received within that tolerance (default is 150_000)

Trait Implementations

impl Clone for RequestVerifier[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for RequestVerifier[src]

impl Default for RequestVerifier {
    fn default() -> Self {
        RequestVerifier {
            cert_cache: HashMap::new(),
        }
    }
}

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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