Struct poly1305::Poly1305[][src]

pub struct Poly1305 { /* fields omitted */ }
Expand description

The Poly1305 universal hash function.

Note that Poly1305 is not a traditional MAC and is single-use only (a.k.a. “one-time authenticator”).

For this reason it doesn’t impl the crypto_mac::Mac trait.

Implementations

Compute unpadded Poly1305 for the given input data.

The main use case for this is XSalsa20Poly1305.

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

Initialize Poly1305 with the given key

Size of the key for the universal hash function.

Input data into the Poly1305 universal hash function

Reset internal state

Get the hashed output

Size of the inputs to and outputs from the universal hash function

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 Output. This is useful when constructing Message Authentication Codes (MACs) from universal hash functions. 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

Performs the conversion.

Performs the conversion.

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.