[][src]Struct r1cs::EdwardsPoint

pub struct EdwardsPoint<F: Field, C: EdwardsCurve<F>> { /* fields omitted */ }

An embedded Edwards curve point defined over the same base field as the constraint system, with affine coordinates as elements.

Methods

impl<F: Field, C: EdwardsCurve<F>> EdwardsPoint<F, C>[src]

pub fn scalar_mult_evaluate(&self, scalar: &Element<F>) -> EdwardsPoint<F, C>[src]

Like scalar_mult, but actually evaluates the compression function rather than just adding it to a GadgetBuilder.

pub fn from_elements(x: Element<F>, y: Element<F>) -> EdwardsPoint<F, C>[src]

Given an x and y coordinate, checks that they constitute a point on the curve and returns an EdwardsPoint

pub fn compressed(&self) -> &Element<F>[src]

Returns the Y coordinate of an EdwardsPoint

Trait Implementations

impl<F: Field, C: EdwardsCurve<F>> Clone for EdwardsPoint<F, C>[src]

Auto Trait Implementations

impl<F, C> !Send for EdwardsPoint<F, C>

impl<F, C> !Sync for EdwardsPoint<F, C>

impl<F, C> Unpin for EdwardsPoint<F, C>

impl<F, C> UnwindSafe for EdwardsPoint<F, C> where
    C: RefUnwindSafe,
    F: RefUnwindSafe

impl<F, C> RefUnwindSafe for EdwardsPoint<F, C> where
    C: RefUnwindSafe,
    F: RefUnwindSafe

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]