[][src]Struct jwt_compact::alg::Hs384Key

pub struct Hs384Key(_);

Signing / verifying key for HS384 algorithm. Zeroed on drop.

Methods

impl Hs384Key[src]

pub fn generate<R: CryptoRng + RngCore>(rng: &mut R) -> Self[src]

Generates a random key using a cryptographically secure RNG.

pub fn hmac(&self, message: impl AsRef<[u8]>) -> MacResult<U48>[src]

Computes HMAC with this key and the specified message.

Trait Implementations

impl AsMut<[u8]> for Hs384Key[src]

impl Drop for Hs384Key[src]

impl AsRef<[u8]> for Hs384Key[src]

impl<'_> From<&'_ [u8]> for Hs384Key[src]

impl Clone for Hs384Key[src]

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

Performs copy-assignment from source. Read more

impl Debug for Hs384Key[src]

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]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToHex for T where
    T: AsRef<[u8]>, 
[src]