pub trait MontgomeryParameters: ModelParameters {
    type TwistedEdwardsParameters: TwistedEdwardsParameters<BaseField = Self::BaseField>;

    const MONTGOMERY_A: Self::BaseField;
    const MONTGOMERY_B: Self::BaseField;
}

Required Associated Types§

Required Associated Constants§

The coefficient A of the Montgomery curve.

The coefficient B of the Montgomery curve.

Implementors§