-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace the ark-zkey witness calculator with the one of iden3 (#273)
* Add files via upload * Add files via upload * Add files via upload * Add files via upload * Add files via upload * Add files via upload * Add files via upload * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Delete rln/resources/tree_height_20/rln.wasm * Changes in accordance with the results of the first round of reviewing. * Formatting * Acknowledgements and a readme fix * Minor change: Vec memory allocation
- Loading branch information
1 parent
8b04930
commit e39f156
Showing
19 changed files
with
1,981 additions
and
189 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
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
Binary file not shown.
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
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
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,73 @@ | ||
// This file is based on the code by iden3. Its preimage can be found here: | ||
// https://github.com/iden3/circom-witnesscalc/blob/5cb365b6e4d9052ecc69d4567fcf5bc061c20e94/src/lib.rs | ||
|
||
pub mod graph; | ||
pub mod proto; | ||
pub mod storage; | ||
|
||
use ark_bn254::Fr; | ||
use graph::Node; | ||
use num_bigint::BigInt; | ||
use ruint::aliases::U256; | ||
use std::collections::HashMap; | ||
use storage::deserialize_witnesscalc_graph; | ||
|
||
pub type InputSignalsInfo = HashMap<String, (usize, usize)>; | ||
|
||
pub fn calc_witness<I: IntoIterator<Item = (String, Vec<BigInt>)>>( | ||
inputs: I, | ||
graph_data: &[u8], | ||
) -> Vec<Fr> { | ||
let inputs: HashMap<String, Vec<U256>> = inputs | ||
.into_iter() | ||
.map(|(key, value)| (key, value.iter().map(|v| U256::from(v)).collect())) | ||
.collect(); | ||
|
||
let (nodes, signals, input_mapping): (Vec<Node>, Vec<usize>, InputSignalsInfo) = | ||
deserialize_witnesscalc_graph(std::io::Cursor::new(graph_data)).unwrap(); | ||
|
||
let mut inputs_buffer = get_inputs_buffer(get_inputs_size(&nodes)); | ||
populate_inputs(&inputs, &input_mapping, &mut inputs_buffer); | ||
|
||
graph::evaluate(&nodes, inputs_buffer.as_slice(), &signals) | ||
} | ||
|
||
fn get_inputs_size(nodes: &[Node]) -> usize { | ||
let mut start = false; | ||
let mut max_index = 0usize; | ||
for &node in nodes.iter() { | ||
if let Node::Input(i) = node { | ||
if i > max_index { | ||
max_index = i; | ||
} | ||
start = true | ||
} else if start { | ||
break; | ||
} | ||
} | ||
max_index + 1 | ||
} | ||
|
||
fn populate_inputs( | ||
input_list: &HashMap<String, Vec<U256>>, | ||
inputs_info: &InputSignalsInfo, | ||
input_buffer: &mut [U256], | ||
) { | ||
for (key, value) in input_list { | ||
let (offset, len) = inputs_info[key]; | ||
if len != value.len() { | ||
panic!("Invalid input length for {}", key); | ||
} | ||
|
||
for (i, v) in value.iter().enumerate() { | ||
input_buffer[offset + i] = *v; | ||
} | ||
} | ||
} | ||
|
||
/// Allocates inputs vec with position 0 set to 1 | ||
fn get_inputs_buffer(size: usize) -> Vec<U256> { | ||
let mut inputs = vec![U256::ZERO; size]; | ||
inputs[0] = U256::from(1); | ||
inputs | ||
} |
Oops, something went wrong.