Struct elliptic_curve::point::NonIdentity
source · 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§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<'de, P> Deserialize<'de> for NonIdentity<P>
impl<'de, P> Deserialize<'de> for NonIdentity<P>
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
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>
§type Repr = <P as GroupEncoding>::Repr
type Repr = <P as GroupEncoding>::Repr
The encoding of group elements. Read more
source§fn from_bytes(bytes: &Self::Repr) -> CtOption<Self>
fn from_bytes(bytes: &Self::Repr) -> CtOption<Self>
Attempts to deserialize a group element from its encoding.
source§impl<C, P> Mul<&NonZeroScalar<C>> for &NonIdentity<P>
impl<C, P> Mul<&NonZeroScalar<C>> for &NonIdentity<P>
§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>
§type Output = NonIdentity<P>
type Output = NonIdentity<P>
The resulting type after applying the
*
operator.source§impl<P> Serialize for NonIdentity<P>where
P: Serialize,
impl<P> Serialize for NonIdentity<P>where
P: Serialize,
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: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
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
)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)