-
Notifications
You must be signed in to change notification settings - Fork 295
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a4be365
commit 55b3ae8
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
...uits/cpp/barretenberg/cpp/src/barretenberg/stdlib/recursion/transcript/honk_trancript.hpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#pragma once | ||
|
||
#include "barretenberg/ecc/curves/bn254/fq.hpp" | ||
#include "barretenberg/ecc/curves/bn254/fr.hpp" | ||
#include "barretenberg/ecc/curves/bn254/g1.hpp" | ||
#include "barretenberg/transcript/transcript.hpp" | ||
|
||
#include "../../commitment/pedersen/pedersen.hpp" | ||
#include "../../commitment/pedersen/pedersen_plookup.hpp" | ||
#include "../../hash/blake3s/blake3s.hpp" | ||
#include "../../primitives/bigfield/bigfield.hpp" | ||
#include "../../primitives/biggroup/biggroup.hpp" | ||
#include "../../primitives/bool/bool.hpp" | ||
#include "../../primitives/curves/bn254.hpp" | ||
#include "../../primitives/field/field.hpp" | ||
#include "../../primitives/witness/witness.hpp" | ||
#include "../verification_key/verification_key.hpp" | ||
|
||
namespace proof_system::plonk::stdlib::recursion::honk { | ||
template <typename Composer> class Transcript { | ||
public: | ||
using field_pt = field_t<Composer>; | ||
using witness_pt = witness_t<Composer>; | ||
using fq_pt = bigfield<Composer, barretenberg::Bn254FqParams>; | ||
using group_pt = element<Composer, fq_pt, field_pt, barretenberg::g1>; | ||
using Key = verification_key<stdlib::bn254<Composer>>; | ||
}; | ||
} // namespace proof_system::plonk::stdlib::recursion::honk |