kontor-crypto 0.1.5

Kontor Proof-of-Retrievability system for decentralized storage
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Circuit gadgets for Nova PoR.
//!
//! This module contains low-level circuit components used in the synthesis.

pub mod merkle;
pub mod poseidon;
pub mod select;

// Re-export commonly used gadgets
pub use merkle::{verify_aggregation_path_gated, verify_merkle_path_gated};
pub use poseidon::poseidon_hash_tagged_gadget;
pub use select::conditional_select;