zkboo 0.1.0

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

//! Implementation of the execution logic for ZKBoo circuits.

mod backend;
// mod frontend;
pub mod functions;
mod word_pool;

pub use backend::ExecutionBackend;
// pub use frontend::Executor;
pub use functions::exec;
pub use word_pool::{
    GlobalFlexibleWordPool, GlobalWordSource, OwnedFlexibleWordPool, WordPool, WordPoolWrapper,
    WordSource, WordSourceWrapper,
};