#[repr(C)]pub struct CRYPT_AES_256_KEY_STATE {
pub Key: [u8; 32],
pub IV: [u8; 16],
pub EncryptionState: [u8; 240],
pub DecryptionState: [u8; 240],
pub Feedback: [u8; 16],
}
Expand description
Required features: "Win32_Security_Cryptography"
Fields
Key: [u8; 32]
IV: [u8; 16]
EncryptionState: [u8; 240]
DecryptionState: [u8; 240]
Feedback: [u8; 16]
Trait Implementations
impl Clone for CRYPT_AES_256_KEY_STATE
impl Clone for CRYPT_AES_256_KEY_STATE
impl Copy for CRYPT_AES_256_KEY_STATE
Auto Trait Implementations
impl RefUnwindSafe for CRYPT_AES_256_KEY_STATE
impl Send for CRYPT_AES_256_KEY_STATE
impl Sync for CRYPT_AES_256_KEY_STATE
impl Unpin for CRYPT_AES_256_KEY_STATE
impl UnwindSafe for CRYPT_AES_256_KEY_STATE
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