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