2#include "barretenberg/flavor/ecc_vm.hpp"
3#include "barretenberg/plonk/proof_system/types/proof.hpp"
4#include "barretenberg/sumcheck/sumcheck.hpp"
9 using Commitment =
typename Flavor::Commitment;
15 explicit ECCVMVerifier_(
const std::shared_ptr<VerificationKey>& verifier_key =
nullptr);
17 std::map<std::string, Commitment> commitments,
18 std::map<std::string, FF> pcs_fr_elements,
19 const std::shared_ptr<VerifierCommitmentKey>& pcs_verification_key,
20 const std::shared_ptr<Transcript>& transcript)
22 , commitments(std::move(commitments))
23 , pcs_fr_elements(std::move(pcs_fr_elements))
24 , pcs_verification_key(std::move(pcs_verification_key))
25 , transcript(std::move(transcript))
35 std::shared_ptr<VerificationKey> key;
36 std::map<std::string, Commitment> commitments;
37 std::map<std::string, FF> pcs_fr_elements;
38 std::shared_ptr<VerifierCommitmentKey> pcs_verification_key;
39 std::shared_ptr<Transcript> transcript;
Common transcript class for both parties. Stores the data for the current round, as well as the manif...
Definition: transcript.hpp:62
Definition: eccvm_verifier.hpp:7
bool verify_proof(const plonk::proof &proof)
This function verifies an ECCVM Honk proof for given program settings.
Definition: eccvm_verifier.cpp:36
VerificationKey_< PrecomputedEntities< Commitment > > VerificationKey
The verification key is responsible for storing the the commitments to the precomputed (non-witnessk)...
Definition: goblin_translator.hpp:941
Definition: verification_key.hpp:25
Defines particular circuit builder types expected to be used for circuit construction in stdlib and c...
Definition: claim.hpp:6