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

feat: dummy snark should have correct agg_vkey_hash #51

Merged
merged 1 commit into from
Dec 28, 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
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

52 changes: 37 additions & 15 deletions snark-verifier-sdk/src/halo2/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,17 @@ pub struct AggregationDependencyIntent<'a> {
pub vk: &'a VerifyingKey<G1Affine>,
pub num_instance: &'a [usize],
pub accumulator_indices: Option<&'a [(usize, usize)]>,
/// See [`AggregationDependencyIntentOwned::agg_vk_hash_data`].
pub agg_vk_hash_data: Option<((usize, usize), Fr)>,
}

#[derive(Clone, Debug)]
pub struct AggregationDependencyIntentOwned {
pub vk: VerifyingKey<G1Affine>,
pub num_instance: Vec<usize>,
pub accumulator_indices: Option<Vec<(usize, usize)>>,
/// If this dependency is itself from a universal aggregation circuit, this should contain (index, agg_vkey_hash), where `index = (i,j)` is the pair recording that the agg_vkey_hash is located at `instances[i][j]`.
pub agg_vk_hash_data: Option<((usize, usize), Fr)>,
}

/// This trait should be implemented on the minimal circuit configuration data necessary to
Expand Down Expand Up @@ -56,22 +60,39 @@ pub trait KeygenAggregationCircuitIntent {
Self: Sized,
{
let mut rng = StdRng::seed_from_u64(0u64);
let snarks = self
.intent_of_dependencies()
.into_iter()
.map(|AggregationDependencyIntent { vk, num_instance, accumulator_indices }| {
let k = vk.get_domain().k();
// In KZG `gen_dummy_snark_from_vk` calls `compile`, which only uses `params` for `params.k()` so we can just use a random untrusted setup.
// Moreover since this is a dummy snark, the trusted setup shouldn't matter.
let params = ParamsKZG::setup(k, &mut rng);
gen_dummy_snark_from_vk::<SHPLONK>(
&params,
vk,
num_instance.to_vec(),
accumulator_indices.map(|v| v.to_vec()),
let snarks =
self.intent_of_dependencies()
.into_iter()
.map(
|AggregationDependencyIntent {
vk,
num_instance,
accumulator_indices,
agg_vk_hash_data,
}| {
let k = vk.get_domain().k();
// In KZG `gen_dummy_snark_from_vk` calls `compile`, which only uses `params` for `params.k()` so we can just use a random untrusted setup.
// Moreover since this is a dummy snark, the trusted setup shouldn't matter.
let params = ParamsKZG::setup(k, &mut rng);
let mut snark = gen_dummy_snark_from_vk::<SHPLONK>(
&params,
vk,
num_instance.to_vec(),
accumulator_indices.map(|v| v.to_vec()),
);
// We set the current agg_vk_hash in the dummy snark so that the final agg_vk_hash is correct at the end of keygen.
if let Some(((i, j), agg_vk_hash)) = agg_vk_hash_data {
assert!(
i < snark.instances.len(),
"Invalid agg_vk_hash index: ({i},{j}), num_instance: {num_instance:?}");
assert!(j < snark.instances[i].len(),
"Invalid agg_vk_hash index: ({i},{j}), num_instance: {num_instance:?}");
snark.instances[i][j] = agg_vk_hash;
}
snark
},
)
})
.collect();
.collect();
self.build_keygen_circuit_from_snarks(snarks)
}
}
Expand All @@ -82,6 +103,7 @@ impl<'a> From<&'a AggregationDependencyIntentOwned> for AggregationDependencyInt
vk: &intent.vk,
num_instance: &intent.num_instance,
accumulator_indices: intent.accumulator_indices.as_deref(),
agg_vk_hash_data: intent.agg_vk_hash_data,
}
}
}
Loading