-
Notifications
You must be signed in to change notification settings - Fork 220
Expand file tree
/
Copy pathbench.rs
More file actions
46 lines (44 loc) · 1.32 KB
/
bench.rs
File metadata and controls
46 lines (44 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
use criterion::criterion_main;
mod aggregate_verify_same_message;
mod aggregate_verify_same_signer;
mod batch_to_affine;
mod batch_verify_same_signer;
mod combine_public_keys;
mod combine_signatures;
mod dkg;
mod evaluate_point;
mod hash_to_curve;
mod msm;
mod scheme_batch_verify_same_message;
mod scheme_batch_verify_same_signer;
mod signature_generation;
mod signature_verification;
mod threshold_batch_verify_same_message;
mod threshold_batch_verify_same_message_pre;
mod threshold_batch_verify_same_signer;
mod threshold_recover;
mod tle_decrypt;
mod tle_encrypt;
criterion_main!(
batch_to_affine::benches,
dkg::golden::benches,
dkg::feldman_desmedt::benches,
hash_to_curve::benches,
threshold_recover::benches,
combine_public_keys::benches,
combine_signatures::benches,
signature_generation::benches,
signature_verification::benches,
batch_verify_same_signer::benches,
aggregate_verify_same_message::benches,
aggregate_verify_same_signer::benches,
scheme_batch_verify_same_signer::benches,
scheme_batch_verify_same_message::benches,
evaluate_point::benches,
msm::benches,
threshold_batch_verify_same_message::benches,
threshold_batch_verify_same_message_pre::benches,
threshold_batch_verify_same_signer::benches,
tle_encrypt::benches,
tle_decrypt::benches,
);