pub struct NonIdentity<P> { /* private fields */ }Expand description
Non-identity point type.
This type ensures that its value is not the identity point, ala core::num::NonZero*.
In the context of ECC, it’s useful for ensuring that certain arithmetic cannot result in the identity point.
Implementations§
Source§impl<P> NonIdentity<P>
 
impl<P> NonIdentity<P>
Sourcepub fn new(point: P) -> CtOption<Self>
 
pub fn new(point: P) -> CtOption<Self>
Create a NonIdentity from a point.
Source§impl<P> NonIdentity<P>
 
impl<P> NonIdentity<P>
Sourcepub fn from_repr(repr: &P::Repr) -> CtOption<Self>
 
pub fn from_repr(repr: &P::Repr) -> CtOption<Self>
Decode a NonIdentity from its encoding.
Source§impl<P> NonIdentity<P>
 
impl<P> NonIdentity<P>
Sourcepub fn random(rng: impl CryptoRng + RngCore) -> Self
 
pub fn random(rng: impl CryptoRng + RngCore) -> Self
Generate a random NonIdentity<ProjectivePoint>.
Sourcepub fn to_affine(self) -> NonIdentity<P::AffineRepr>
 
pub fn to_affine(self) -> NonIdentity<P::AffineRepr>
Converts this element into its affine representation.
Source§impl<P> NonIdentity<P>where
    P: PrimeCurveAffine,
 
impl<P> NonIdentity<P>where
    P: PrimeCurveAffine,
Sourcepub fn to_curve(self) -> NonIdentity<P::Curve>
 
pub fn to_curve(self) -> NonIdentity<P::Curve>
Converts this element to its curve representation.
Trait Implementations§
Source§impl<P> AsRef<P> for NonIdentity<P>
 
impl<P> AsRef<P> for NonIdentity<P>
Source§impl<P: Clone> Clone for NonIdentity<P>
 
impl<P: Clone> Clone for NonIdentity<P>
Source§fn clone(&self) -> NonIdentity<P>
 
fn clone(&self) -> NonIdentity<P>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl<P> ConditionallySelectable for NonIdentity<P>where
    P: ConditionallySelectable,
 
impl<P> ConditionallySelectable for NonIdentity<P>where
    P: ConditionallySelectable,
Source§fn conditional_select(a: &Self, b: &Self, choice: Choice) -> Self
 
fn conditional_select(a: &Self, b: &Self, choice: Choice) -> Self
Source§fn conditional_assign(&mut self, other: &Self, choice: Choice)
 
fn conditional_assign(&mut self, other: &Self, choice: Choice)
Source§fn conditional_swap(a: &mut Self, b: &mut Self, choice: Choice)
 
fn conditional_swap(a: &mut Self, b: &mut Self, choice: Choice)
Conditionally swap 
self and other if choice == 1; otherwise,
reassign both unto themselves. Read moreSource§impl<P> ConstantTimeEq for NonIdentity<P>where
    P: ConstantTimeEq,
 
impl<P> ConstantTimeEq for NonIdentity<P>where
    P: ConstantTimeEq,
Source§impl<P> Deref for NonIdentity<P>
 
impl<P> Deref for NonIdentity<P>
Source§impl<C, P> From<&NonIdentity<P>> for PublicKey<C>
 
impl<C, P> From<&NonIdentity<P>> for PublicKey<C>
Source§fn from(value: &NonIdentity<P>) -> Self
 
fn from(value: &NonIdentity<P>) -> Self
Converts to this type from the input type.
Source§impl<C> From<&PublicKey<C>> for NonIdentity<AffinePoint<C>>where
    C: CurveArithmetic,
 
impl<C> From<&PublicKey<C>> for NonIdentity<AffinePoint<C>>where
    C: CurveArithmetic,
Source§impl<C, P> From<NonIdentity<P>> for PublicKey<C>
 
impl<C, P> From<NonIdentity<P>> for PublicKey<C>
Source§fn from(value: NonIdentity<P>) -> Self
 
fn from(value: NonIdentity<P>) -> Self
Converts to this type from the input type.
Source§impl<C> From<PublicKey<C>> for NonIdentity<AffinePoint<C>>where
    C: CurveArithmetic,
 
impl<C> From<PublicKey<C>> for NonIdentity<AffinePoint<C>>where
    C: CurveArithmetic,
Source§impl<P> GroupEncoding for NonIdentity<P>
 
impl<P> GroupEncoding for NonIdentity<P>
Source§impl<C, P> Mul<&NonZeroScalar<C>> for &NonIdentity<P>
 
impl<C, P> Mul<&NonZeroScalar<C>> for &NonIdentity<P>
Source§type Output = NonIdentity<P>
 
type Output = NonIdentity<P>
The resulting type after applying the 
* operator.Source§impl<C, P> Mul<NonZeroScalar<C>> for NonIdentity<P>
 
impl<C, P> Mul<NonZeroScalar<C>> for NonIdentity<P>
Source§type Output = NonIdentity<P>
 
type Output = NonIdentity<P>
The resulting type after applying the 
* operator.impl<P: Copy> Copy for NonIdentity<P>
Auto Trait Implementations§
impl<P> Freeze for NonIdentity<P>where
    P: Freeze,
impl<P> RefUnwindSafe for NonIdentity<P>where
    P: RefUnwindSafe,
impl<P> Send for NonIdentity<P>where
    P: Send,
impl<P> Sync for NonIdentity<P>where
    P: Sync,
impl<P> Unpin for NonIdentity<P>where
    P: Unpin,
impl<P> UnwindSafe for NonIdentity<P>where
    P: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more