sonobe-primitives 0.1.0-alpha.1

Cryptographic primitives, utilities, and abstractions for the Sonobe library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![warn(missing_docs)]

//! This crate provides the foundational primitives used throughout Sonobe's
//! folding scheme and IVC implementations.
//!
//! It includes algebraic abstractions (fields, groups, and their in-circuit
//! emulated counterparts), constraint system arithmetizations (R1CS, CCS),
//! commitment schemes, transcript/sponge constructions, and various utility
//! types.

pub mod algebra;
pub mod arithmetizations;
pub mod circuits;
pub mod commitments;
pub mod relations;
pub mod traits;
pub mod transcripts;
pub mod utils;