pub struct Context { /* private fields */ }
Expand description

A context for multi-step (Init-Update-Finish) HMAC signing.

Use sign for single-step HMAC signing.

Implementations

Constructs a new HMAC signing context using the given digest algorithm and key.

Updates the HMAC with all the data in data. update may be called zero or more times until finish is called.

Finalizes the HMAC calculation and returns the HMAC value. sign consumes the context so it cannot be (mis-)used after sign has been called.

It is generally not safe to implement HMAC verification by comparing the return value of sign to a tag. Use verify for verification instead.

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.