Skip to main content

Auth

Struct Auth 

Source
pub struct Auth { /* private fields */ }
Expand description

Secret-key authentication implementation based on libsodium’s HMAC-SHA512-256 crypto_auth_* functions.

Implementations§

Source§

impl Auth

Source

pub fn compute<Key: ByteArray<CRYPTO_AUTH_KEYBYTES>, Input: Bytes, Output: NewByteArray<CRYPTO_AUTH_BYTES>>( key: Key, input: &Input, ) -> Output

Computes the message authentication code for input using key.

This function takes ownership of key, but HMAC keys may be reused for multiple messages. Clone the key first when it is needed again.

Source

pub fn compute_to_vec<Key: ByteArray<CRYPTO_AUTH_KEYBYTES>, Input: Bytes>( key: Key, input: &Input, ) -> Vec<u8>

Computes the message authentication code and returns it as a Vec.

This is a convenience wrapper around Auth::compute.

Source

pub fn compute_and_verify<OtherMac: ByteArray<CRYPTO_AUTH_BYTES>, Key: ByteArray<CRYPTO_AUTH_KEYBYTES>, Input: Bytes>( other_mac: &OtherMac, key: Key, input: &Input, ) -> Result<(), Error>

Verifies that other_mac authenticates input under key.

§Errors

Returns an error if other_mac does not match the authentication code computed from key and input.

Source

pub fn new<Key: ByteArray<CRYPTO_AUTH_KEYBYTES>>(key: Key) -> Self

Returns a new incremental authenticator for key.

This function takes ownership of key, but HMAC keys may be reused for multiple messages. Clone the key first when it is needed again.

Source

pub fn update<Input: Bytes>(&mut self, input: &Input)

Updates the secret-key authenticator at self with input.

Source

pub fn finalize<Output: NewByteArray<CRYPTO_AUTH_BYTES>>(self) -> Output

Finalizes this secret-key authenticator, returning the message authentication code.

Source

pub fn finalize_to_vec(self) -> Vec<u8>

Finalizes this secret-key authenticator, returning the message authentication code as a Vec. Convenience wrapper around Auth::finalize.

Source

pub fn verify<OtherMac: ByteArray<CRYPTO_AUTH_BYTES>>( self, other_mac: &OtherMac, ) -> Result<(), Error>

Finalizes this authenticator, and verifies that the computed code matches other_mac using a constant-time comparison.

§Errors

Returns an error if other_mac does not match the authentication code computed from the data passed to Auth::update.

Auto Trait Implementations§

§

impl Freeze for Auth

§

impl RefUnwindSafe for Auth

§

impl Send for Auth

§

impl Sync for Auth

§

impl Unpin for Auth

§

impl UnsafeUnpin for Auth

§

impl UnwindSafe for Auth

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.