zkboo 0.1.0

An implementation of the ZKBoo protocol.
Documentation
1
2
3
4
5
6
7
8
9
// SPDX-License-Identifier: LGPL-3.0-or-later

//! Traits and implementations for cryptographic hashers and pseudo-random generators.

mod hasher;
mod prg;

pub use hasher::{Digest, Hasher};
pub use prg::{GeneratesRandom, HashPRG, PseudoRandomGenerator, RandomGenerator, Seed};