#[repr(C, packed(1))]pub struct ECCCipherBlob {
pub x_coordinate: [BYTE; 64],
pub y_coordinate: [BYTE; 64],
pub hash: [BYTE; 32],
pub cipher_len: ULONG,
pub cipher: [BYTE; 1],
}
Expand description
The structure of ECCCIPHERBLOB
Fields§
§x_coordinate: [BYTE; 64]
§y_coordinate: [BYTE; 64]
§hash: [BYTE; 32]
§cipher_len: ULONG
§cipher: [BYTE; 1]
Implementations§
Source§impl ECCCipherBlob
impl ECCCipherBlob
Trait Implementations§
Source§impl Clone for ECCCipherBlob
impl Clone for ECCCipherBlob
Source§fn clone(&self) -> ECCCipherBlob
fn clone(&self) -> ECCCipherBlob
Returns a duplicate 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 Debug for ECCCipherBlob
impl Debug for ECCCipherBlob
impl Copy for ECCCipherBlob
Auto Trait Implementations§
impl Freeze for ECCCipherBlob
impl RefUnwindSafe for ECCCipherBlob
impl Send for ECCCipherBlob
impl Sync for ECCCipherBlob
impl Unpin for ECCCipherBlob
impl UnwindSafe for ECCCipherBlob
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