mirror of
https://github.com/arnaucube/ark-curves-cherry-picked.git
synced 2026-02-02 00:36:39 +01:00
16 lines
319 B
Rust
16 lines
319 B
Rust
use ark_algebra_bench_templates::*;
|
|
use ark_mnt6_298::{
|
|
fq::Fq, fq3::Fq3, fr::Fr, Fq6, G1Projective as G1, G2Projective as G2, MNT6_298,
|
|
};
|
|
|
|
bench!(
|
|
Name = "MNT6_298",
|
|
Pairing = MNT6_298,
|
|
G1 = G1,
|
|
G2 = G2,
|
|
ScalarField = Fr,
|
|
G1BaseField = Fq,
|
|
G2BaseField = Fq3,
|
|
TargetField = Fq6,
|
|
);
|