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

    const MONTGOMERY_A: <Self as ModelParameters>::BaseField;
    const MONTGOMERY_B: <Self as ModelParameters>::BaseField;
}

Required Associated Types§

type TwistedEdwardsParameters: TwistedEdwardsParameters<BaseField = Self::BaseField>

Required Associated Constants§

const MONTGOMERY_A: <Self as ModelParameters>::BaseField

The coefficient A of the Montgomery curve.

const MONTGOMERY_B: <Self as ModelParameters>::BaseField

The coefficient B of the Montgomery curve.

Object Safety§

This trait is not object safe.

Implementors§

§

impl MontgomeryParameters for EdwardsParameters

§

type TwistedEdwardsParameters = EdwardsParameters

§

const MONTGOMERY_A: Fp256<FrParameters> = _

§

const MONTGOMERY_B: Fp256<FrParameters> = _