[][src]Struct hawk::PayloadHasher

pub struct PayloadHasher(_);

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: DigestAlgorithm) -> Result<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: DigestAlgorithm,
    payload: B2
) -> Result<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) -> Result<()> where
    B: AsRef<[u8]>, 
[src]

Update the hash with new data.

pub fn finish(self) -> Result<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> 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]