Update BW6-761

This commit is contained in:
Pratyush Mishra
2020-11-29 14:15:33 -08:00
parent 31664a0e2e
commit 6a6b3711c6
5 changed files with 31 additions and 314 deletions

View File

@@ -8,8 +8,8 @@ pub type Fq = Fp768<FqParameters>;
pub struct FqParameters;
pub const FQ_ONE: Fq = field_new!(Fq, FqParameters::R);
pub const FQ_ZERO: Fq = field_new!(Fq, BigInteger([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]));
pub const FQ_ONE: Fq = field_new!(Fq, "1");
pub const FQ_ZERO: Fq = field_new!(Fq, "0");
impl Fp768Parameters for FqParameters {}
impl FftParameters for FqParameters {