Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Keccak constraints to acir_format #393

Merged
merged 1 commit into from
May 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cpp/src/barretenberg/dsl/acir_format/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ barretenberg_module(
stdlib_primitives
stdlib_sha256
stdlib_blake2s
stdlib_keccak
stdlib_pedersen_commitment
stdlib_merkle_tree
stdlib_schnorr
Expand Down
25 changes: 25 additions & 0 deletions cpp/src/barretenberg/dsl/acir_format/acir_format.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,11 @@ void create_circuit(Composer& composer, const acir_format& constraint_system)
create_blake2s_constraints(composer, constraint);
}

// Add keccak constraints
for (const auto& constraint : constraint_system.keccak_constraints) {
create_keccak_constraints(composer, constraint);
}

// Add pedersen constraints
for (const auto& constraint : constraint_system.pedersen_constraints) {
create_pedersen_constraint(composer, constraint);
Expand Down Expand Up @@ -148,6 +153,11 @@ Composer create_circuit(const acir_format& constraint_system,
create_blake2s_constraints(composer, constraint);
}

// Add keccak constraints
for (const auto& constraint : constraint_system.keccak_constraints) {
create_keccak_constraints(composer, constraint);
}

// Add pedersen constraints
for (const auto& constraint : constraint_system.pedersen_constraints) {
create_pedersen_constraint(composer, constraint);
Expand Down Expand Up @@ -232,6 +242,11 @@ Composer create_circuit_with_witness(const acir_format& constraint_system,
create_blake2s_constraints(composer, constraint);
}

// Add keccak constraints
for (const auto& constraint : constraint_system.keccak_constraints) {
create_keccak_constraints(composer, constraint);
}

// Add pedersen constraints
for (const auto& constraint : constraint_system.pedersen_constraints) {
create_pedersen_constraint(composer, constraint);
Expand Down Expand Up @@ -313,6 +328,11 @@ Composer create_circuit_with_witness(const acir_format& constraint_system, std::
create_blake2s_constraints(composer, constraint);
}

// Add keccak constraints
for (const auto& constraint : constraint_system.keccak_constraints) {
create_keccak_constraints(composer, constraint);
}

// Add pedersen constraints
for (const auto& constraint : constraint_system.pedersen_constraints) {
create_pedersen_constraint(composer, constraint);
Expand Down Expand Up @@ -392,6 +412,11 @@ void create_circuit_with_witness(Composer& composer, const acir_format& constrai
create_blake2s_constraints(composer, constraint);
}

// Add keccak constraints
for (const auto& constraint : constraint_system.keccak_constraints) {
create_keccak_constraints(composer, constraint);
}

// Add pedersen constraints
for (const auto& constraint : constraint_system.pedersen_constraints) {
create_pedersen_constraint(composer, constraint);
Expand Down
4 changes: 4 additions & 0 deletions cpp/src/barretenberg/dsl/acir_format/acir_format.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#include "range_constraint.hpp"
#include "sha256_constraint.hpp"
#include "blake2s_constraint.hpp"
#include "keccak_constraint.hpp"
#include "fixed_base_scalar_mul.hpp"
#include "schnorr_verify.hpp"
#include "ecdsa_secp256k1.hpp"
Expand All @@ -26,6 +27,7 @@ struct acir_format {
std::vector<EcdsaSecp256k1Constraint> ecdsa_constraints;
std::vector<Sha256Constraint> sha256_constraints;
std::vector<Blake2sConstraint> blake2s_constraints;
std::vector<KeccakConstraint> keccak_constraints;
std::vector<HashToFieldConstraint> hash_to_field_constraints;
std::vector<PedersenConstraint> pedersen_constraints;
std::vector<MerkleMembershipConstraint> merkle_membership_constraints;
Expand Down Expand Up @@ -64,6 +66,7 @@ template <typename B> inline void read(B& buf, acir_format& data)
read(buf, data.schnorr_constraints);
read(buf, data.ecdsa_constraints);
read(buf, data.blake2s_constraints);
read(buf, data.keccak_constraints);
read(buf, data.pedersen_constraints);
read(buf, data.hash_to_field_constraints);
read(buf, data.fixed_base_scalar_mul_constraints);
Expand All @@ -82,6 +85,7 @@ template <typename B> inline void write(B& buf, acir_format const& data)
write(buf, data.schnorr_constraints);
write(buf, data.ecdsa_constraints);
write(buf, data.blake2s_constraints);
write(buf, data.keccak_constraints);
write(buf, data.pedersen_constraints);
write(buf, data.hash_to_field_constraints);
write(buf, data.fixed_base_scalar_mul_constraints);
Expand Down
3 changes: 3 additions & 0 deletions cpp/src/barretenberg/dsl/acir_format/acir_format.test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ TEST(acir_format, test_logic_gate_from_noir_circuit)
.ecdsa_constraints = {},
.sha256_constraints = {},
.blake2s_constraints = {},
.keccak_constraints = {},
.hash_to_field_constraints = {},
.pedersen_constraints = {},
.merkle_membership_constraints = {},
Expand Down Expand Up @@ -150,6 +151,7 @@ TEST(acir_format, test_schnorr_verify_pass)
.ecdsa_constraints = {},
.sha256_constraints = {},
.blake2s_constraints = {},
.keccak_constraints = {},
.hash_to_field_constraints = {},
.pedersen_constraints = {},
.merkle_membership_constraints = {},
Expand Down Expand Up @@ -219,6 +221,7 @@ TEST(acir_format, test_schnorr_verify_small_range)
.ecdsa_constraints = {},
.sha256_constraints = {},
.blake2s_constraints = {},
.keccak_constraints = {},
.hash_to_field_constraints = {},
.pedersen_constraints = {},
.merkle_membership_constraints = {},
Expand Down
38 changes: 38 additions & 0 deletions cpp/src/barretenberg/dsl/acir_format/keccak_constraint.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
#include "keccak_constraint.hpp"
#include "round.hpp"
#include "barretenberg/stdlib/hash/keccak/keccak.hpp"

namespace acir_format {

void create_keccak_constraints(Composer& composer, const KeccakConstraint& constraint)
{

// Create byte array struct
byte_array_ct arr(&composer);

// Get the witness assignment for each witness index
// Write the witness assignment to the byte_array
for (const auto& witness_index_num_bits : constraint.inputs) {
auto witness_index = witness_index_num_bits.witness;
auto num_bits = witness_index_num_bits.num_bits;

// XXX: The implementation requires us to truncate the element to the nearest byte and not bit
auto num_bytes = round_to_nearest_byte(num_bits);

field_ct element = field_ct::from_witness_index(&composer, witness_index);
byte_array_ct element_bytes(element, num_bytes);

arr.write(element_bytes);
}

byte_array_ct output_bytes = proof_system::plonk::stdlib::keccak<Composer>::hash(arr);

// Convert byte array to vector of field_t
auto bytes = output_bytes.bytes();

for (size_t i = 0; i < bytes.size(); ++i) {
composer.assert_equal(bytes[i].normalize().witness_index, constraint.result[i]);
}
}

} // namespace acir_format
52 changes: 52 additions & 0 deletions cpp/src/barretenberg/dsl/acir_format/keccak_constraint.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
#pragma once
#include <cstdint>
#include <vector>
#include "barretenberg/dsl/types.hpp"

namespace acir_format {

struct HashInput {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As we are going to be extending this to be used by other hash types it could be useful to have it in a separate file. A new hash_input.hpp file feels unnecessary though and it can be a part of acir_format.hpp. However, this is not blocking imo as it is only used by Keccak at the moment, just leaving the note for visibility.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good point, I will do this when it is used by other hashes.

uint32_t witness;
uint32_t num_bits;

friend bool operator==(HashInput const& lhs, HashInput const& rhs) = default;
};

struct KeccakConstraint {
std::vector<HashInput> inputs;
std::vector<uint32_t> result;

friend bool operator==(KeccakConstraint const& lhs, KeccakConstraint const& rhs) = default;
};

void create_keccak_constraints(Composer& composer, const KeccakConstraint& constraint);

template <typename B> inline void read(B& buf, HashInput& constraint)
{
using serialize::read;
read(buf, constraint.witness);
read(buf, constraint.num_bits);
}

template <typename B> inline void write(B& buf, HashInput const& constraint)
{
using serialize::write;
write(buf, constraint.witness);
write(buf, constraint.num_bits);
}

template <typename B> inline void read(B& buf, KeccakConstraint& constraint)
{
using serialize::read;
read(buf, constraint.inputs);
read(buf, constraint.result);
}

template <typename B> inline void write(B& buf, KeccakConstraint const& constraint)
{
using serialize::write;
write(buf, constraint.inputs);
write(buf, constraint.result);
}

} // namespace acir_format