Struct ghash::GHash [−][src]
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
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