elliptic-curve 0.14.1

General purpose Elliptic Curve Cryptography (ECC) support, including traits and generic types for representing various elliptic curve forms, scalars, points, and public/secret keys composed thereof.
Documentation
//! Elliptic curve arithmetic traits.

use crate::{
    Curve, CurveAffine, CurveGroup, Error, FieldBytes, Group, NonZeroScalar, PrimeCurve,
    ScalarValue,
    ctutils::{CtEq, CtSelect},
    ops::{Invert, LinearCombination, Mul, MulByGeneratorVartime, MulVartime, Reduce},
    point::{AffineCoordinates, NonIdentity},
    scalar::{FromUintUnchecked, IsHigh},
};
use bigint::modular::Retrieve;
use common::Generate;
use core::fmt::Debug;
use subtle::{ConditionallySelectable, ConstantTimeEq, CtOption};
use zeroize::DefaultIsZeroes;

/// Elliptic curve with an arithmetic implementation.
pub trait CurveArithmetic: Curve {
    /// Elliptic curve point in affine coordinates.
    type AffinePoint: 'static
        + AffineCoordinates<FieldRepr = FieldBytes<Self>>
        + Copy
        + ConditionallySelectable
        + ConstantTimeEq
        + CtEq
        + CtSelect
        + CurveAffine<Curve = Self::ProjectivePoint, Scalar = Self::Scalar>
        + Debug
        + Default
        + DefaultIsZeroes
        + Eq
        + From<NonIdentity<Self::AffinePoint>>
        + Generate
        + MulVartime<Self::Scalar>
        + for<'a> MulVartime<&'a Self::Scalar>
        + PartialEq
        + Sized
        + Send
        + Sync
        + TryInto<NonIdentity<Self::AffinePoint>, Error = Error>;

    /// Elliptic curve point in projective coordinates.
    ///
    /// Note: the following bounds are provided by [`group::Group`]:
    /// - `'static`
    /// - [`Copy`]
    /// - [`Clone`]
    /// - [`Debug`]
    /// - [`Eq`]
    /// - [`Sized`]
    /// - [`Send`]
    /// - [`Sync`]
    type ProjectivePoint: ConditionallySelectable
        + ConstantTimeEq
        + CtEq
        + CtSelect
        + Default
        + DefaultIsZeroes
        + From<Self::AffinePoint>
        + From<NonIdentity<Self::ProjectivePoint>>
        + Generate
        + Into<Self::AffinePoint>
        + LinearCombination<[(Self::ProjectivePoint, Self::Scalar)]>
        + LinearCombination<[(Self::ProjectivePoint, Self::Scalar); 2]>
        + MulByGeneratorVartime
        + MulVartime<Self::Scalar>
        + for<'a> MulVartime<&'a Self::Scalar>
        + TryInto<NonIdentity<Self::ProjectivePoint>, Error = Error>
        + CurveGroup<Affine = Self::AffinePoint>
        + Group<Scalar = Self::Scalar>;

    /// Scalar field modulo this curve's order.
    ///
    /// Note: the following bounds are provided by [`ff::Field`]:
    /// - `'static`
    /// - [`Copy`]
    /// - [`Clone`]
    /// - [`ConditionallySelectable`]
    /// - [`ConstantTimeEq`]
    /// - [`Debug`]
    /// - [`Default`]
    /// - [`Send`]
    /// - [`Sync`]
    type Scalar: AsRef<Self::Scalar>
        + CtEq
        + CtSelect
        + DefaultIsZeroes
        + From<NonZeroScalar<Self>>
        + From<ScalarValue<Self>>
        + FromUintUnchecked<Uint = Self::Uint>
        + Generate
        + Into<FieldBytes<Self>>
        + Into<ScalarValue<Self>>
        + Into<Self::Uint>
        + Invert<Output = CtOption<Self::Scalar>>
        + IsHigh
        + Mul<Self::AffinePoint, Output = Self::ProjectivePoint>
        + MulVartime<Self::AffinePoint>
        + for<'a> Mul<&'a Self::AffinePoint, Output = Self::ProjectivePoint>
        + for<'a> MulVartime<&'a Self::AffinePoint>
        + Mul<Self::ProjectivePoint, Output = Self::ProjectivePoint>
        + MulVartime<Self::ProjectivePoint>
        + for<'a> Mul<&'a Self::ProjectivePoint, Output = Self::ProjectivePoint>
        + for<'a> MulVartime<&'a Self::ProjectivePoint>
        + PartialOrd
        + Reduce<Self::Uint>
        + Reduce<FieldBytes<Self>>
        + Retrieve<Output = Self::Uint>
        + TryInto<NonZeroScalar<Self>, Error = Error>
        + ff::PrimeField<Repr = FieldBytes<Self>>;
}

/// Prime order elliptic curve with projective arithmetic implementation.
pub trait PrimeCurveArithmetic:
    PrimeCurve + CurveArithmetic<ProjectivePoint = Self::CurveGroup>
{
    /// Prime order elliptic curve group.
    type CurveGroup: group::prime::PrimeCurve<Affine = <Self as CurveArithmetic>::AffinePoint>;
}