[]Struct amcl_wrapper_ml::ECCurve::ecp::ECP

pub struct ECP { /* fields omitted */ }

Methods

impl ECP

pub fn pnew() -> ECP

pub fn new() -> ECP

pub fn new_bigs(ix: &BIG, iy: &BIG) -> ECP

pub fn new_bigint(ix: &BIG, s: isize) -> ECP

pub fn new_big(ix: &BIG) -> ECP

pub fn inf(&mut self)

pub fn is_infinity(&self) -> bool

pub fn cswap(&mut self, Q: &mut ECP, d: isize)

pub fn cmove(&mut self, Q: &ECP, d: isize)

pub fn copy(&mut self, P: &ECP)

pub fn neg(&mut self)

pub fn mulx(&mut self, c: &mut FP)

pub fn equals(&self, Q: &ECP) -> bool

pub fn affine(&mut self)

pub fn getx(&self) -> BIG

pub fn gety(&self) -> BIG

pub fn gets(&self) -> isize

pub fn getpx(&self) -> FP

pub fn getpy(&self) -> FP

pub fn getpz(&self) -> FP

pub fn setpx(&mut self, x: FP)

pub fn setpy(&mut self, y: FP)

pub fn setpz(&mut self, z: FP)

pub fn tobytes(&self, b: &mut [u8], compress: bool)

pub fn frombytes(b: &[u8]) -> ECP

pub fn tostring(&self) -> String

pub fn to_hex(&self) -> String

pub fn from_hex_iter(iter: &mut SplitWhitespace) -> ECP

pub fn from_hex(val: String) -> ECP

pub fn dbl(&mut self)

pub fn add(&mut self, Q: &ECP)

pub fn dadd(&mut self, Q: &ECP, W: &ECP)

pub fn sub(&mut self, Q: &ECP)

pub fn pinmul(&self, e: i32, bts: i32) -> ECP

pub fn mul(&self, e: &BIG) -> ECP

pub fn mul2(&self, e: &BIG, Q: &ECP, f: &BIG) -> ECP

pub fn cfp(&mut self)

pub fn mapit(h: &[u8]) -> ECP

pub fn generator() -> ECP

Trait Implementations

impl Clone for ECP

impl Copy for ECP

impl Debug for ECP

impl Display for ECP

impl<'_> From<&'_ ECP> for G1[src]

impl From<ECP> for G1[src]

impl PartialEq<ECP> for ECP

Auto Trait Implementations

impl RefUnwindSafe for ECP

impl Send for ECP

impl Sync for ECP

impl Unpin for ECP

impl UnwindSafe for ECP

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> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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>,