pub(crate) mod field;
pub(crate) mod scalar;
#[cfg(feature = "hash2curve")]
mod hash2curve;
#[cfg(feature = "precomputed-tables")]
mod tables;
pub use self::scalar::Scalar;
use self::field::FieldElement;
use crate::NistP521;
use elliptic_curve::{CurveArithmetic, PrimeCurveArithmetic};
use primeorder::{PrimeCurveParams, point_arithmetic};
pub type AffinePoint = primeorder::AffinePoint<NistP521>;
pub type ProjectivePoint = primeorder::ProjectivePoint<NistP521>;
impl CurveArithmetic for NistP521 {
type AffinePoint = AffinePoint;
type ProjectivePoint = ProjectivePoint;
type Scalar = Scalar;
}
impl PrimeCurveArithmetic for NistP521 {
type CurveGroup = ProjectivePoint;
}
impl PrimeCurveParams for NistP521 {
type FieldElement = FieldElement;
type PointArithmetic = point_arithmetic::EquationAIsMinusThree;
const EQUATION_A: FieldElement = FieldElement::from_u64(3).neg();
const EQUATION_B: FieldElement = FieldElement::from_hex(
"0051953eb9618e1c9a1f929a21a0b68540eea2da725b99b315f3b8b489918ef109e156193951ec7e937b1652c0bd3bb1bf073573df883d2c34f1ef451fd46b503f00",
);
const GENERATOR: (FieldElement, FieldElement) = (
FieldElement::from_hex(
"00c6858e06b70404e9cd9e3ecb662395b4429c648139053fb521f828af606b4d3dbaa14b5e77efe75928fe1dc127a2ffa8de3348b3c1856a429bf97e7e31c2e5bd66",
),
FieldElement::from_hex(
"011839296a789a3bc0045c8a5fb42c7d1bd998f54449579b446817afbd17273e662c97ee72995ef42640c550b9013fad0761353c7086a272c24088be94769fd16650",
),
);
#[cfg(all(feature = "alloc", feature = "precomputed-tables"))]
fn mul_by_generator_vartime(k: &Scalar) -> ProjectivePoint {
tables::BASEPOINT_TABLE_VARTIME.mul(k)
}
#[cfg(all(feature = "alloc", feature = "precomputed-tables"))]
fn mul_by_generator_and_mul_add_vartime(
a: &Scalar,
b_scalar: &Scalar,
b_point: &ProjectivePoint,
) -> ProjectivePoint {
tables::BASEPOINT_TABLE_VARTIME.lincomb(a, &[(*b_point, *b_scalar)])
}
}