#[repr(C)]pub struct CRYPT_AES_256_KEY_STATE {
pub Key: [c_uchar; 32],
pub IV: [c_uchar; 16],
pub EncryptionState: [[c_uchar; 16]; 15],
pub DecryptionState: [[c_uchar; 16]; 15],
pub Feedback: [c_uchar; 16],
}
Fields§
§Key: [c_uchar; 32]
§IV: [c_uchar; 16]
§EncryptionState: [[c_uchar; 16]; 15]
§DecryptionState: [[c_uchar; 16]; 15]
§Feedback: [c_uchar; 16]
Trait Implementations§
Source§impl Clone for CRYPT_AES_256_KEY_STATE
impl Clone for CRYPT_AES_256_KEY_STATE
Source§fn clone(&self) -> CRYPT_AES_256_KEY_STATE
fn clone(&self) -> CRYPT_AES_256_KEY_STATE
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 Default for CRYPT_AES_256_KEY_STATE
impl Default for CRYPT_AES_256_KEY_STATE
Source§fn default() -> CRYPT_AES_256_KEY_STATE
fn default() -> CRYPT_AES_256_KEY_STATE
Returns the “default value” for a type. Read more
impl Copy for CRYPT_AES_256_KEY_STATE
Auto Trait Implementations§
impl Freeze for CRYPT_AES_256_KEY_STATE
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§
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