[][src]Struct dusk_plonk::constraint_system::ecc::Point

pub struct Point { /* fields omitted */ }

Represents a JubJub point in the circuit

Implementations

impl Point[src]

pub fn fast_add(&self, composer: &mut StandardComposer, point_b: Point) -> Point[src]

Adds two curve points together using a curve addition gate Note that since the points are not fixed the generator is not a part of the circuit description, however it is less efficient for a program width of 4.

impl Point[src]

pub fn x(&self) -> &Variable[src]

Return the X coordinate of the point

pub fn y(&self) -> &Variable[src]

Return the Y coordinate of the point

pub fn identity(composer: &mut StandardComposer) -> Point[src]

Returns an identity point

pub fn from_private_affine(
    composer: &mut StandardComposer,
    affine: AffinePoint
) -> Point
[src]

Converts an AffinePoint into a constraint system Point without constraining the values

pub fn from_public_affine(
    composer: &mut StandardComposer,
    affine: AffinePoint
) -> Point
[src]

Converts an AffinePoint into a constraint system Point without constraining the values

pub fn conditional_select(
    &self,
    composer: &mut StandardComposer,
    bit: Variable,
    point_b: Point
) -> Point
[src]

Conditionally selects a Point based on an input bit If: bit == 1 => self, bit == 0 => point_b,

impl Point[src]

pub fn add(&self, composer: &mut StandardComposer, point_b: Point) -> Point[src]

Adds two curve points together

pub fn slow_add(&self, composer: &mut StandardComposer, point_b: Point) -> Point[src]

Adds two curve points together using arithmetic gates

Trait Implementations

impl Clone for Point[src]

impl Copy for Point[src]

impl Debug for Point[src]

impl From<PointScalar> for Point[src]

Auto Trait Implementations

impl RefUnwindSafe for Point

impl Send for Point

impl Sync for Point

impl Unpin for Point

impl UnwindSafe for Point

Blanket Implementations

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

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

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

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

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,