p3-circle 0.2.4-succinct

A STARK proof system built around the unit circle of a finite field, based on the Circle STARKs paper.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! A framework for operating over the unit circle of a finite field,
//! following the [Circle STARKs paper](https://eprint.iacr.org/2024/278) by Haböck, Levit and Papini.

#![no_std]

extern crate alloc;

mod cfft;
mod domain;
mod pcs;
mod twiddles;
mod util;

pub use cfft::*;
pub use pcs::*;