mirror of
https://github.com/arnaucube/ark-curves-cherry-picked.git
synced 2026-01-27 14:13:46 +01:00
66 lines
2.5 KiB
Rust
66 lines
2.5 KiB
Rust
use ark_ec::{
|
|
models::CurveConfig,
|
|
twisted_edwards::{Affine, MontCurveConfig, Projective, TECurveConfig},
|
|
};
|
|
use ark_ff::MontFp;
|
|
|
|
use crate::{Fq, Fr};
|
|
|
|
#[cfg(test)]
|
|
mod tests;
|
|
|
|
pub type EdwardsAffine = Affine<EdwardsConfig>;
|
|
pub type EdwardsProjective = Projective<EdwardsConfig>;
|
|
|
|
#[derive(Clone, Default, PartialEq, Eq)]
|
|
pub struct EdwardsConfig;
|
|
|
|
impl CurveConfig for EdwardsConfig {
|
|
type BaseField = Fq;
|
|
type ScalarField = Fr;
|
|
|
|
/// COFACTOR = 8
|
|
const COFACTOR: &'static [u64] = &[8];
|
|
|
|
/// COFACTOR^(-1) mod r =
|
|
/// 12124894969357926281749346891948134384518445910386624712788431705725441736421489799867521238554906438478484045560
|
|
const COFACTOR_INV: Fr = MontFp!("12124894969357926281749346891948134384518445910386624712788431705725441736421489799867521238554906438478484045560");
|
|
}
|
|
|
|
impl TECurveConfig for EdwardsConfig {
|
|
/// COEFF_A = -1 =
|
|
const COEFF_A: Fq = MontFp!("-1");
|
|
|
|
/// COEFF_D = 79743
|
|
const COEFF_D: Fq = MontFp!("79743");
|
|
|
|
/// AFFINE_GENERATOR_COEFFS = (GENERATOR_X, GENERATOR_Y)
|
|
const GENERATOR: EdwardsAffine = EdwardsAffine::new_unchecked(GENERATOR_X, GENERATOR_Y);
|
|
|
|
type MontCurveConfig = EdwardsConfig;
|
|
|
|
/// Multiplication by `a` is just negation.
|
|
#[inline(always)]
|
|
fn mul_by_a(elem: Self::BaseField) -> Self::BaseField {
|
|
-elem
|
|
}
|
|
}
|
|
|
|
impl MontCurveConfig for EdwardsConfig {
|
|
/// COEFF_A = 0x95D53EB3F6AC3F7A53C26020144439DC6073BCAE513E03FD06B6B3BAA390F25E51534B26719E33F4CD906D4DA9B535
|
|
const COEFF_A: Fq = MontFp!("90083623084271891037116870487743067984710080209539149685414147055329063590616489392386084989619674926965747987765");
|
|
|
|
/// COEFF_B = 0x118650763CE64AB4BE743604C8D05013DC2663652A3D58B21ECAB7BFF65B70DB8BA09F9098E61CC903B2F92B2564ACA
|
|
const COEFF_B: Fq = MontFp!("168580802928697202973535863207150465551683432545375510854470115611391404757724333382582803149953685197474573470410");
|
|
|
|
type TECurveConfig = EdwardsConfig;
|
|
}
|
|
|
|
/// GENERATOR_X =
|
|
/// 174701772324485506941690903512423551998294352968833659960042362742684869862495746426366187462669992073196420267127
|
|
const GENERATOR_X: Fq = MontFp!("174701772324485506941690903512423551998294352968833659960042362742684869862495746426366187462669992073196420267127");
|
|
|
|
/// GENERATOR_Y =
|
|
/// 208487200052258845495340374451540775445408439654930191324011635560142523886549663106522691296420655144190624954833
|
|
const GENERATOR_Y: Fq = MontFp!("208487200052258845495340374451540775445408439654930191324011635560142523886549663106522691296420655144190624954833");
|