#[repr(C)]pub struct CMSG_CNG_CONTENT_DECRYPT_INFO {
pub cbSize: u32,
pub ContentEncryptionAlgorithm: CRYPT_ALGORITHM_IDENTIFIER,
pub pfnAlloc: PFN_CMSG_ALLOC,
pub pfnFree: PFN_CMSG_FREE,
pub hNCryptKey: NCRYPT_KEY_HANDLE,
pub pbContentEncryptKey: *mut u8,
pub cbContentEncryptKey: u32,
pub hCNGContentEncryptKey: BCRYPT_KEY_HANDLE,
pub pbCNGContentEncryptKeyObject: *mut u8,
}
Expand description
Required features: "Win32_Security_Cryptography"
Fields
cbSize: u32
ContentEncryptionAlgorithm: CRYPT_ALGORITHM_IDENTIFIER
pfnAlloc: PFN_CMSG_ALLOC
pfnFree: PFN_CMSG_FREE
hNCryptKey: NCRYPT_KEY_HANDLE
pbContentEncryptKey: *mut u8
cbContentEncryptKey: u32
hCNGContentEncryptKey: BCRYPT_KEY_HANDLE
pbCNGContentEncryptKeyObject: *mut u8
Trait Implementations
impl Clone for CMSG_CNG_CONTENT_DECRYPT_INFO
impl Clone for CMSG_CNG_CONTENT_DECRYPT_INFO
impl Copy for CMSG_CNG_CONTENT_DECRYPT_INFO
Auto Trait Implementations
impl RefUnwindSafe for CMSG_CNG_CONTENT_DECRYPT_INFO
impl !Send for CMSG_CNG_CONTENT_DECRYPT_INFO
impl !Sync for CMSG_CNG_CONTENT_DECRYPT_INFO
impl Unpin for CMSG_CNG_CONTENT_DECRYPT_INFO
impl UnwindSafe for CMSG_CNG_CONTENT_DECRYPT_INFO
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more