plonkup/proof_system/widget/logic.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#[cfg(feature = "alloc")]
8pub(crate) mod proverkey;
9#[cfg(feature = "alloc")]
10pub(crate) use proverkey::ProverKey;
11
12mod verifierkey;
13pub(crate) use verifierkey::VerifierKey;