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§

Required Associated Constants§

source

const MONTGOMERY_A: <Self as ModelParameters>::BaseField

The coefficient A of the Montgomery curve.

source

const MONTGOMERY_B: <Self as ModelParameters>::BaseField

The coefficient B of the Montgomery curve.

Object Safety§

This trait is not object safe.

Implementors§