Enum sec1::point::Coordinates
source · pub enum Coordinates<'a, Size: ModulusSize> {
Identity,
Compact {
x: &'a GenericArray<u8, Size>,
},
Compressed {
x: &'a GenericArray<u8, Size>,
y_is_odd: bool,
},
Uncompressed {
x: &'a GenericArray<u8, Size>,
y: &'a GenericArray<u8, Size>,
},
}
Expand description
Enum representing the coordinates of either compressed or uncompressed SEC1-encoded elliptic curve points.
Variants§
Identity
Identity point (a.k.a. point at infinity)
Compact
Fields
§
x: &'a GenericArray<u8, Size>
x-coordinate
Compact curve point
Compressed
Compressed curve point
Uncompressed
Uncompressed curve point
Implementations§
source§impl<'a, Size: ModulusSize> Coordinates<'a, Size>
impl<'a, Size: ModulusSize> Coordinates<'a, Size>
sourcepub fn tag(&self) -> Tag
pub fn tag(&self) -> Tag
Get the tag octet needed to encode this set of Coordinates
Trait Implementations§
source§impl<'a, Size: Clone + ModulusSize> Clone for Coordinates<'a, Size>
impl<'a, Size: Clone + ModulusSize> Clone for Coordinates<'a, Size>
source§fn clone(&self) -> Coordinates<'a, Size>
fn clone(&self) -> Coordinates<'a, Size>
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<'a, Size: Debug + ModulusSize> Debug for Coordinates<'a, Size>
impl<'a, Size: Debug + ModulusSize> Debug for Coordinates<'a, Size>
source§impl<'a, Size: PartialEq + ModulusSize> PartialEq<Coordinates<'a, Size>> for Coordinates<'a, Size>
impl<'a, Size: PartialEq + ModulusSize> PartialEq<Coordinates<'a, Size>> for Coordinates<'a, Size>
source§fn eq(&self, other: &Coordinates<'a, Size>) -> bool
fn eq(&self, other: &Coordinates<'a, Size>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<'a, Size: Copy + ModulusSize> Copy for Coordinates<'a, Size>
impl<'a, Size: Eq + ModulusSize> Eq for Coordinates<'a, Size>
impl<'a, Size: ModulusSize> StructuralEq for Coordinates<'a, Size>
impl<'a, Size: ModulusSize> StructuralPartialEq for Coordinates<'a, Size>
Auto Trait Implementations§
impl<'a, Size> RefUnwindSafe for Coordinates<'a, Size>where <Size as ArrayLength<u8>>::ArrayType: RefUnwindSafe,
impl<'a, Size> Send for Coordinates<'a, Size>
impl<'a, Size> Sync for Coordinates<'a, Size>
impl<'a, Size> Unpin for Coordinates<'a, Size>
impl<'a, Size> UnwindSafe for Coordinates<'a, Size>where <Size as ArrayLength<u8>>::ArrayType: RefUnwindSafe,
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