#[repr(C, packed(1))]pub struct RSAPublicKeyBlob {
pub alg_id: ULONG,
pub bit_leb: ULONG,
pub version: Version,
pub modulus: [BYTE; 256],
pub public_exponent: [BYTE; 4],
}
Expand description
The structure of RSAPUBLICKEYBLOB
Fields§
§alg_id: ULONG
§bit_leb: ULONG
§version: Version
§modulus: [BYTE; 256]
§public_exponent: [BYTE; 4]
Trait Implementations§
Source§impl Clone for RSAPublicKeyBlob
impl Clone for RSAPublicKeyBlob
Source§fn clone(&self) -> RSAPublicKeyBlob
fn clone(&self) -> RSAPublicKeyBlob
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 RSAPublicKeyBlob
impl Debug for RSAPublicKeyBlob
impl Copy for RSAPublicKeyBlob
Auto Trait Implementations§
impl Freeze for RSAPublicKeyBlob
impl RefUnwindSafe for RSAPublicKeyBlob
impl Send for RSAPublicKeyBlob
impl Sync for RSAPublicKeyBlob
impl Unpin for RSAPublicKeyBlob
impl UnwindSafe for RSAPublicKeyBlob
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