Struct win_crypto_ng::key_blob::EccKeyPublicPayload
source · pub struct EccKeyPublicPayload<'a> {
pub x: &'a [u8],
pub y: &'a [u8],
}
Expand description
Trailing data for BCRYPT_ECCPUBLIC_BLOB
.
All the fields are stored as a big-endian multiprecision integer.
Fields§
§x: &'a [u8]
§y: &'a [u8]
Auto Trait Implementations§
impl<'a> RefUnwindSafe for EccKeyPublicPayload<'a>
impl<'a> Send for EccKeyPublicPayload<'a>
impl<'a> Sync for EccKeyPublicPayload<'a>
impl<'a> Unpin for EccKeyPublicPayload<'a>
impl<'a> UnwindSafe for EccKeyPublicPayload<'a>
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