zkboo 0.1.0

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

//! Implementation of the view replay backend.

mod backend;
mod word_pool;

pub use backend::{ViewReplayError, ViewReplayerBackend};
pub use word_pool::{
    GlobalFlexibleWordPairPool, GlobalWordPairSource, OwnedFlexibleWordPairPool, WordPairPool,
    WordPairPoolWrapper, WordPairSource, WordPairSourceWrapper,
};