Skip to content

Commit

Permalink
Add Keccak constraints to acir_format (#393)
Browse files Browse the repository at this point in the history
  • Loading branch information
guipublic authored May 3, 2023
1 parent d489677 commit 95e33b5
Show file tree
Hide file tree
Showing 6 changed files with 123 additions and 0 deletions.
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 barretenberg/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
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<ComputeMerkleRootConstraint> compute_merkle_root_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
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 = {},
.compute_merkle_root_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 = {},
.compute_merkle_root_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 = {},
.compute_merkle_root_constraints = {},
Expand Down
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
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 {
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

0 comments on commit 95e33b5

Please sign in to comment.