Struct secp256k1::curve::Affine [−][src]
A group element of the secp256k1 curve, in affine coordinates.
Fields
x: Field
y: Field
infinity: bool
Implementations
impl Affine
[src]
pub fn set_xy(&mut self, x: &Field, y: &Field)
[src]
Set a group element equal to the point with given X and Y coordinates.
pub fn set_xquad(&mut self, x: &Field) -> bool
[src]
Set a group element (affine) equal to the point with the given X coordinate and a Y coordinate that is a quadratic residue modulo p. The return value is true iff a coordinate with the given X coordinate exists.
pub fn set_xo_var(&mut self, x: &Field, odd: bool) -> bool
[src]
Set a group element (affine) equal to the point with the given X coordinate, and given oddness for Y. Return value indicates whether the result is valid.
pub fn is_infinity(&self) -> bool
[src]
Check whether a group element is the point at infinity.
pub fn is_valid_var(&self) -> bool
[src]
Check whether a group element is valid (i.e., on the curve).
pub fn neg_in_place(&mut self, other: &Affine)
[src]
pub fn neg(&self) -> Affine
[src]
pub fn set_gej(&mut self, a: &Jacobian)
[src]
Set a group element equal to another which is given in jacobian coordinates.
pub fn from_gej(a: &Jacobian) -> Self
[src]
pub fn set_gej_var(&mut self, a: &Jacobian)
[src]
pub fn set_gej_zinv(&mut self, a: &Jacobian, zi: &Field)
[src]
pub fn clear(&mut self)
[src]
Clear a secp256k1_ge to prevent leaking sensitive information.
Trait Implementations
impl Clone for Affine
[src]
impl Debug for Affine
[src]
impl Default for Affine
[src]
impl Eq for Affine
[src]
impl From<AffineStorage> for Affine
[src]
fn from(a: AffineStorage) -> Affine
[src]
impl Into<Affine> for PublicKey
[src]
impl Into<AffineStorage> for Affine
[src]
fn into(self) -> AffineStorage
[src]
impl PartialEq<Affine> for Affine
[src]
impl StructuralEq for Affine
[src]
impl StructuralPartialEq for Affine
[src]
Auto Trait Implementations
impl RefUnwindSafe for Affine
impl Send for Affine
impl Sync for Affine
impl Unpin for Affine
impl UnwindSafe for Affine
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src]
V: MultiLane<T>,