fullcodec_plonk/
proof_system.rs

1// This Source Code Form is subject to the terms of the Mozilla Public
2// License, v. 2.0. If a copy of the MPL was not distributed with this
3// file, You can obtain one at http://mozilla.org/MPL/2.0/.
4//
5// Copyright (c) DUSK NETWORK. All rights reserved.
6
7//! Proving system
8
9pub(crate) mod linearisation_poly;
10pub(crate) mod proof;
11pub(crate) mod widget;
12
13mod preprocess;
14
15pub(crate) mod prover;
16pub(crate) mod quotient_poly;
17pub(crate) mod verifier;
18
19pub use prover::Prover;
20pub use verifier::Verifier;
21pub use widget::ProverKey;
22
23pub use proof::Proof;
24pub use widget::VerifierKey;