pub trait ArrabbiataCurve: CommitmentCurve + EndoCurve {
    type SpongeConstants: SpongeConstants;

    const NAME: &'static str;
    const SPONGE_CONSTANTS: Self::SpongeConstants;

    // Required methods
    fn sponge_params() -> &'static ArithmeticSpongeParams<Self::ScalarField>;
    fn other_curve_sponge_params(
    ) -> &'static ArithmeticSpongeParams<Self::BaseField>;
    fn endos() -> &'static (Self::BaseField, Self::ScalarField);
    fn other_curve_endo() -> &'static Self::ScalarField;
}
Expand description

Represents additional information that a curve needs in order to be used with Arrabbiata.

Required Associated Types§

source

type SpongeConstants: SpongeConstants

Required Associated Constants§

source

const NAME: &'static str

A human readable name.

source

const SPONGE_CONSTANTS: Self::SpongeConstants

Required Methods§

source

fn sponge_params() -> &'static ArithmeticSpongeParams<Self::ScalarField>

Provides the sponge params to be used with this curve.

source

fn other_curve_sponge_params( ) -> &'static ArithmeticSpongeParams<Self::BaseField>

Provides the sponge params to be used with the other curve.

source

fn endos() -> &'static (Self::BaseField, Self::ScalarField)

Provides the coefficients for the curve endomorphism, called (q,r) in some places.

source

fn other_curve_endo() -> &'static Self::ScalarField

Provides the coefficient for the curve endomorphism over the other field, called q in some places.

Implementations on Foreign Types§

source§

impl ArrabbiataCurve for Affine<VestaParameters>

source§

const NAME: &'static str = "vesta"

§

type SpongeConstants = PlonkSpongeConstants

source§

const SPONGE_CONSTANTS: Self::SpongeConstants = _

source§

fn sponge_params() -> &'static ArithmeticSpongeParams<Self::ScalarField>

source§

fn other_curve_sponge_params( ) -> &'static ArithmeticSpongeParams<Self::BaseField>

source§

fn endos() -> &'static (Self::BaseField, Self::ScalarField)

source§

fn other_curve_endo() -> &'static Self::ScalarField

source§

impl ArrabbiataCurve for Affine<PallasParameters>

source§

const NAME: &'static str = "pallas"

§

type SpongeConstants = PlonkSpongeConstants

source§

const SPONGE_CONSTANTS: Self::SpongeConstants = _

source§

fn sponge_params() -> &'static ArithmeticSpongeParams<Self::ScalarField>

source§

fn other_curve_sponge_params( ) -> &'static ArithmeticSpongeParams<Self::BaseField>

source§

fn endos() -> &'static (Self::BaseField, Self::ScalarField)

source§

fn other_curve_endo() -> &'static Self::ScalarField

Implementors§