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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)