Struct http_sign::HmacSha256[][src]

pub struct HmacSha256 { /* fields omitted */ }
👎 Deprecated

The “hmac-sha256” signature algorithm. Deprecated by the standard because it reveals which hash and digest algorithm is used.

Implementations

impl HmacSha256[src]

pub fn new(key_id: impl Into<String>, key_value: &[u8]) -> Self[src]

Constructs a new HmacSha256 from the supplied HMAC key data. See the documentation of ring::hmac::Key::new for a discussion of the length of key_value.

Trait Implementations

impl Debug for HmacSha256[src]

impl SignatureAlgorithm for HmacSha256[src]

Auto Trait Implementations

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> 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.