miden-stark-transcript 0.25.1

Transcript channels for Fiat-Shamir protocols with raw field/commitment storage
Documentation
//! Transcript channels for Fiat-Shamir protocols with raw field/commitment storage.
//!
//! This crate provides:
//! - [`ProverTranscript`] and [`ProverChannel`] for prover-side recording.
//! - [`VerifierTranscript`] and [`VerifierChannel`] for verifier-side reading.

#![no_std]

extern crate alloc;

mod channel;
mod data;
mod prover;
mod verifier;

// Public API re-exports.
pub use channel::{Channel, TranscriptChallenger};
pub use data::TranscriptData;
pub use prover::{ProverChannel, ProverTranscript};
pub use verifier::{TranscriptError, VerifierChannel, VerifierTranscript};