File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ fn pke_zk_proof(c: &mut Criterion) {
53
53
let mut rng = rand:: thread_rng ( ) ;
54
54
metadata. fill_with ( || rng. gen ( ) ) ;
55
55
56
- for bits in [ 640usize , 1280 , 4096 ] {
56
+ for bits in [ 64usize , 640 , 1280 , 4096 ] {
57
57
assert_eq ! ( bits % 64 , 0 ) ;
58
58
// Packing, so we take the message and carry modulus to compute our block count
59
59
let num_block = 64usize . div_ceil (
@@ -138,7 +138,7 @@ fn pke_zk_verify(c: &mut Criterion, results_file: &Path) {
138
138
let mut rng = rand:: thread_rng ( ) ;
139
139
metadata. fill_with ( || rng. gen ( ) ) ;
140
140
141
- for bits in [ 640usize , 1280 , 4096 ] {
141
+ for bits in [ 64usize , 640 , 1280 , 4096 ] {
142
142
assert_eq ! ( bits % 64 , 0 ) ;
143
143
// Packing, so we take the message and carry modulus to compute our block count
144
144
let num_block = 64usize . div_ceil (
Original file line number Diff line number Diff line change @@ -669,7 +669,7 @@ async function compactPublicKeyZeroKnowledgeBench() {
669
669
[ ZkComputeLoad . Verify ] : "compute_load_verify" ,
670
670
} ;
671
671
672
- let bits_to_encrypt = [ 640 , 1280 , 4096 ] ;
672
+ let bits_to_encrypt = [ 64 , 640 , 1280 , 4096 ] ;
673
673
674
674
let encrypt_counts = bits_to_encrypt . map ( ( v ) => v / 64 ) ;
675
675
You can’t perform that action at this time.
0 commit comments