Expand description
A framework for symmetric cryptography primitives.
Structs§
- Compression
Function From Hasher - Hash
- A wrapper around an array digest, with a phantom type parameter to ensure that the digest is associated with a particular field.
- Multi
Field32 Padding Free Sponge - A padding-free, overwrite-mode sponge function that operates natively over PF but accepts elements of F: PrimeField32.
- Padding
Free Sponge - A padding-free, overwrite-mode sponge function.
- Serializing
Hasher32 - Serializes 32-bit field elements to bytes (i.e. the little-endian encoding of their canonical
values), then hashes those bytes using some inner hasher, and outputs a
[u8; 32]
. - Serializing
Hasher64 - Serializes 64-bit field elements to bytes (i.e. the little-endian encoding of their canonical
values), then hashes those bytes using some inner hasher, and outputs a
[u8; 32]
. - Serializing
Hasher32 To64 - Serializes 32-bit field elements to u64s (packing two canonical values together), then hashes
those u64s using some inner hasher, and outputs a
[u64; 4]
. - Truncated
Permutation
Traits§
- Compression
Function - An
N
-to-1 compression function. - Cryptographic
Hasher - Cryptographic
Permutation - A permutation thought to be cryptographically secure, in the sense that it is thought to be difficult to distinguish (in a nontrivial way) from a random permutation.
- Permutation
- A permutation in the mathematical sense.
- Pseudo
Compression Function - An
N
-to-1 compression function collision-resistant in a hash tree setting.