pub struct P384Point {
pub x: [u8; 48],
pub y: [u8; 48],
}Expand description
P-384 (secp384r1) point in affine coordinates: x and y as 48 big-endian bytes each.
Values crossing the driver boundary are valid points on the curve. The
point at infinity has no affine encoding and is never represented by this
type; conversions that can produce it return None instead.
Fields§
§x: [u8; 48]X coordinate.
y: [u8; 48]Y coordinate.
Trait Implementations§
impl Copy for P384Point
impl Eq for P384Point
impl StructuralPartialEq for P384Point
Auto Trait Implementations§
impl Freeze for P384Point
impl RefUnwindSafe for P384Point
impl Send for P384Point
impl Sync for P384Point
impl Unpin for P384Point
impl UnsafeUnpin for P384Point
impl UnwindSafe for P384Point
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