ark_bls12_381/curves/
mod.rs1use ark_ec::bls12::{Bls12, Bls12Config, TwistType};
2
3use crate::{Fq, Fq12Config, Fq2Config, Fq6Config};
4
5pub mod g1;
6pub mod g2;
7pub(crate) mod util;
8
9mod g1_swu_iso;
10mod g2_swu_iso;
11
12#[cfg(test)]
13mod tests;
14
15pub use self::{
16 g1::{G1Affine, G1Projective},
17 g2::{G2Affine, G2Projective},
18};
19
20pub type Bls12_381 = Bls12<Config>;
21
22pub struct Config;
23
24impl Bls12Config for Config {
25 const X: &'static [u64] = &[0xd201000000010000];
26 const X_IS_NEGATIVE: bool = true;
27 const TWIST_TYPE: TwistType = TwistType::M;
28 type Fp = Fq;
29 type Fp2Config = Fq2Config;
30 type Fp6Config = Fq6Config;
31 type Fp12Config = Fq12Config;
32 type G1Config = self::g1::Config;
33 type G2Config = self::g2::Config;
34}