#[repr(C)]pub struct mbedtls_cipher_context_t {
pub cipher_info: *const mbedtls_cipher_info_t,
pub key_bitlen: c_int,
pub operation: mbedtls_operation_t,
pub add_padding: Option<unsafe extern "C" fn(output: *mut c_uchar, olen: usize, data_len: usize)>,
pub get_padding: Option<unsafe extern "C" fn(input: *mut c_uchar, ilen: usize, data_len: *mut usize) -> c_int>,
pub unprocessed_data: [c_uchar; 16],
pub unprocessed_len: usize,
pub iv: [c_uchar; 16],
pub iv_size: usize,
pub cipher_ctx: *mut c_void,
pub tweak_ctx: *mut c_void,
pub cmac_ctx: *mut mbedtls_cmac_context_t,
}Expand description
Generic cipher context.
Fields§
§cipher_info: *const mbedtls_cipher_info_tInformation about the associated cipher
key_bitlen: c_intKey length to use
operation: mbedtls_operation_tOperation that the context’s key has been initialised for
add_padding: Option<unsafe extern "C" fn(output: *mut c_uchar, olen: usize, data_len: usize)>Padding functions to use, if relevant for cipher mode
get_padding: Option<unsafe extern "C" fn(input: *mut c_uchar, ilen: usize, data_len: *mut usize) -> c_int>§unprocessed_data: [c_uchar; 16]Buffer for data that hasn’t been encrypted yet
unprocessed_len: usizeNumber of bytes that still need processing
iv: [c_uchar; 16]Current IV or NONCE_COUNTER for CTR-mode
iv_size: usizeIV size in bytes (for ciphers with variable-length IVs)
cipher_ctx: *mut c_voidCipher-specific context
tweak_ctx: *mut c_voidXEX/XTS Tweak context
cmac_ctx: *mut mbedtls_cmac_context_tCMAC Specific context
Trait Implementations§
Source§impl Clone for mbedtls_cipher_context_t
impl Clone for mbedtls_cipher_context_t
Source§fn clone(&self) -> mbedtls_cipher_context_t
fn clone(&self) -> mbedtls_cipher_context_t
Returns a copy 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 mbedtls_cipher_context_t
impl Debug for mbedtls_cipher_context_t
Source§impl Default for mbedtls_cipher_context_t
impl Default for mbedtls_cipher_context_t
impl Copy for mbedtls_cipher_context_t
Auto Trait Implementations§
impl Freeze for mbedtls_cipher_context_t
impl RefUnwindSafe for mbedtls_cipher_context_t
impl !Send for mbedtls_cipher_context_t
impl !Sync for mbedtls_cipher_context_t
impl Unpin for mbedtls_cipher_context_t
impl UnwindSafe for mbedtls_cipher_context_t
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