pub struct EccPoint {
pub x: [u8; 66],
pub y: [u8; 66],
pub size: usize,
}Expand description
ECC point (for scalar multiplication results)
Fields§
§x: [u8; 66]X coordinate
y: [u8; 66]Y coordinate
size: usizeActual size of coordinates in bytes
Implementations§
Auto Trait Implementations§
impl Freeze for EccPoint
impl RefUnwindSafe for EccPoint
impl Send for EccPoint
impl Sync for EccPoint
impl Unpin for EccPoint
impl UnwindSafe for EccPoint
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