mirror of
https://github.com/arnaucube/ark-curves-cherry-picked.git
synced 2026-01-27 14:13:46 +01:00
* Fix another typo in the Jubjub curve comment * fix * progress * get_point_from_x_unchecked * fix * soft link * Fix Bandersnatch * Fix Edwards form of Bandersnatch * Actually fix ed_on_bls12_381_bandersnatch/src/curves/mod.rs * fix * fix * curve-benches * fix the last mul_by_a; fmt Co-authored-by: onewayfunc <onewayfunc@gmail.com> Co-authored-by: Pratyush Mishra <pratyushmishra@berkeley.edu>
9 lines
254 B
Rust
9 lines
254 B
Rust
use crate::*;
|
|
use ark_algebra_test_templates::*;
|
|
use ark_ff::Field;
|
|
|
|
test_group!(g1; G1Projective; sw);
|
|
test_group!(g2; G2Projective; sw);
|
|
test_group!(pairing_output; ark_ec::pairing::PairingOutput<BW6_761>; msm);
|
|
test_pairing!(pairing; crate::BW6_761);
|