mirror of
https://github.com/arnaucube/ark-curves-cherry-picked.git
synced 2026-01-09 07:21:30 +01:00
Fix the location of BitIteratorBE (#132)
* fix * fix Co-authored-by: onewayfunc <onewayfunc@gmail.com>
This commit is contained in:
@@ -64,6 +64,5 @@ ark-ff = { git = "https://github.com/arkworks-rs/algebra" }
|
|||||||
ark-serialize = { git = "https://github.com/arkworks-rs/algebra" }
|
ark-serialize = { git = "https://github.com/arkworks-rs/algebra" }
|
||||||
ark-algebra-bench-templates = { git = "https://github.com/arkworks-rs/algebra" }
|
ark-algebra-bench-templates = { git = "https://github.com/arkworks-rs/algebra" }
|
||||||
ark-algebra-test-templates = { git = "https://github.com/arkworks-rs/algebra" }
|
ark-algebra-test-templates = { git = "https://github.com/arkworks-rs/algebra" }
|
||||||
|
|
||||||
ark-r1cs-std = { git = "https://github.com/arkworks-rs/r1cs-std" }
|
ark-r1cs-std = { git = "https://github.com/arkworks-rs/r1cs-std" }
|
||||||
ark-std = { git = "https://github.com/arkworks-rs/std" }
|
ark-std = { git = "https://github.com/arkworks-rs/std" }
|
||||||
|
|||||||
@@ -3,9 +3,7 @@ use ark_ec::{
|
|||||||
pairing::{MillerLoopOutput, Pairing, PairingOutput},
|
pairing::{MillerLoopOutput, Pairing, PairingOutput},
|
||||||
};
|
};
|
||||||
use ark_ff::{
|
use ark_ff::{
|
||||||
biginteger::BigInteger832,
|
biginteger::BigInteger832, BigInt, BitIteratorBE, CyclotomicMultSubgroup, Field, One,
|
||||||
fields::{BitIteratorBE, Field},
|
|
||||||
BigInt, CyclotomicMultSubgroup, One,
|
|
||||||
};
|
};
|
||||||
use itertools::Itertools;
|
use itertools::Itertools;
|
||||||
|
|
||||||
@@ -27,6 +25,7 @@ pub struct CP6_782;
|
|||||||
|
|
||||||
impl Pairing for CP6_782 {
|
impl Pairing for CP6_782 {
|
||||||
type ScalarField = Fr;
|
type ScalarField = Fr;
|
||||||
|
type BaseField = Fq;
|
||||||
type G1 = G1Projective;
|
type G1 = G1Projective;
|
||||||
type G1Affine = G1Affine;
|
type G1Affine = G1Affine;
|
||||||
type G1Prepared = G1Prepared;
|
type G1Prepared = G1Prepared;
|
||||||
|
|||||||
Reference in New Issue
Block a user