logo
pub struct GHash(_);
Expand description

GHASH: universal hash over GF(2^128) used by AES-GCM.

GHASH is a universal hash function used for message authentication in the AES-GCM authenticated encryption cipher.

Trait Implementations

Size of the block in bytes.

Return block size in bytes.

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Initialize GHASH with the given H field element

Create new value from variable size key.

Key size in bytes.

Return key size in bytes.

Get GHASH output

Update hash function state using the provided rank-2 closure.

Update hash function state with the provided block.

Input data into the universal hash function. If the length of the data is not a multiple of the block size, the remaining data is padded with zeroes up to the BlockSize. Read more

Obtain the [Output] of a [UniversalHash] computation and reset it back to its initial state. Read more

Verify the [UniversalHash] of the processed input matches a given expected value. 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.

Should always be Self

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.