[][src]Struct hawk::PayloadHasher

pub struct PayloadHasher { /* fields omitted */ }

A utility for hashing payloads. Feed your entity body to this, then pass the finish result to a request or response.

Methods

impl PayloadHasher[src]

pub fn new<B>(content_type: B, algorithm: &'static Algorithm) -> Self where
    B: AsRef<[u8]>, 
[src]

Create a new PayloadHasher. The content_type should be lower-case and should not include parameters. The digest is assumed to be the same as the digest used for the credentials in the request.

pub fn hash<B1, B2>(
    content_type: B1,
    algorithm: &'static Algorithm,
    payload: B2
) -> Vec<u8> where
    B1: AsRef<[u8]>,
    B2: AsRef<[u8]>, 
[src]

Hash a single value and return it

pub fn update<B>(&mut self, data: B) where
    B: AsRef<[u8]>, 
[src]

Update the hash with new data.

pub fn finish(self) -> Vec<u8>[src]

Finish hashing and return the result

Note that this appends a newline to the payload, as does the JS Hawk implementaiton.

Auto Trait Implementations

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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