|
use super::*;
|
|
use ark_ff::{field_new, fields::*};
|
|
|
|
pub type Fq12 = Fp12<Fq12Parameters>;
|
|
|
|
#[derive(Clone, Copy)]
|
|
pub struct Fq12Parameters;
|
|
|
|
impl Fp12Parameters for Fq12Parameters {
|
|
type Fp6Params = Fq6Parameters;
|
|
|
|
const NONRESIDUE: Fq6 = field_new!(Fq6, FQ2_ZERO, FQ2_ONE, FQ2_ZERO);
|
|
|
|
#[rustfmt::skip]
|
|
const FROBENIUS_COEFF_FP12_C1: &'static [Fq2] = &[
|
|
// Fp2::NONRESIDUE^(((q^0) - 1) / 6)
|
|
field_new!(Fq2,
|
|
field_new!(Fq, "1"),
|
|
field_new!(Fq, "0"),
|
|
),
|
|
// Fp2::NONRESIDUE^(((q^1) - 1) / 6)
|
|
field_new!(Fq2,
|
|
field_new!(Fq, "8376118865763821496583973867626364092589906065868298776909617916018768340080"),
|
|
field_new!(Fq, "16469823323077808223889137241176536799009286646108169935659301613961712198316"),
|
|
),
|
|
// Fp2::NONRESIDUE^(((q^2) - 1) / 6)
|
|
field_new!(Fq2,
|
|
field_new!(Fq, "21888242871839275220042445260109153167277707414472061641714758635765020556617"),
|
|
field_new!(Fq, "0"),
|
|
),
|
|
// Fp2::NONRESIDUE^(((q^3) - 1) / 6)
|
|
field_new!(Fq2,
|
|
field_new!(Fq, "11697423496358154304825782922584725312912383441159505038794027105778954184319"),
|
|
field_new!(Fq, "303847389135065887422783454877609941456349188919719272345083954437860409601"),
|
|
),
|
|
// Fp2::NONRESIDUE^(((q^4) - 1) / 6)
|
|
field_new!(Fq2,
|
|
field_new!(Fq, "21888242871839275220042445260109153167277707414472061641714758635765020556616"),
|
|
field_new!(Fq, "0"),
|
|
),
|
|
// Fp2::NONRESIDUE^(((q^5) - 1) / 6)
|
|
field_new!(Fq2,
|
|
field_new!(Fq, "3321304630594332808241809054958361220322477375291206261884409189760185844239"),
|
|
field_new!(Fq, "5722266937896532885780051958958348231143373700109372999374820235121374419868"),
|
|
),
|
|
// Fp2::NONRESIDUE^(((q^6) - 1) / 6)
|
|
field_new!(Fq2,
|
|
field_new!(Fq, "-1"),
|
|
field_new!(Fq, "0"),
|
|
),
|
|
// Fp2::NONRESIDUE^(((q^7) - 1) / 6)
|
|
field_new!(Fq2,
|
|
field_new!(Fq, "13512124006075453725662431877630910996106405091429524885779419978626457868503"),
|
|
field_new!(Fq, "5418419548761466998357268504080738289687024511189653727029736280683514010267"),
|
|
),
|
|
// Fp2::NONRESIDUE^(((q^8) - 1) / 6)
|
|
field_new!(Fq2,
|
|
field_new!(Fq, "2203960485148121921418603742825762020974279258880205651966"),
|
|
field_new!(Fq, "0"),
|
|
),
|
|
// Fp2::NONRESIDUE^(((q^9) - 1) / 6)
|
|
field_new!(Fq2,
|
|
field_new!(Fq, "10190819375481120917420622822672549775783927716138318623895010788866272024264"),
|
|
field_new!(Fq, "21584395482704209334823622290379665147239961968378104390343953940207365798982"),
|
|
),
|
|
// Fp2::NONRESIDUE^(((q^10) - 1) / 6)
|
|
field_new!(Fq2,
|
|
field_new!(Fq, "2203960485148121921418603742825762020974279258880205651967"),
|
|
field_new!(Fq, "0"),
|
|
),
|
|
// Fp2::NONRESIDUE^(((q^11) - 1) / 6)
|
|
field_new!(Fq2,
|
|
field_new!(Fq, "18566938241244942414004596690298913868373833782006617400804628704885040364344"),
|
|
field_new!(Fq, "16165975933942742336466353786298926857552937457188450663314217659523851788715"),
|
|
),
|
|
];
|
|
}
|