#[repr(C)]pub struct mbedtls_cipher_context_t {
pub private_cipher_info: *const mbedtls_cipher_info_t,
pub private_key_bitlen: c_int,
pub private_operation: mbedtls_operation_t,
pub private_unprocessed_data: [c_uchar; 16],
pub private_unprocessed_len: usize,
pub private_iv: [c_uchar; 16],
pub private_iv_size: usize,
pub private_cipher_ctx: *mut c_void,
}
Fields§
§private_cipher_info: *const mbedtls_cipher_info_t
§private_key_bitlen: c_int
§private_operation: mbedtls_operation_t
§private_unprocessed_data: [c_uchar; 16]
§private_unprocessed_len: usize
§private_iv: [c_uchar; 16]
§private_iv_size: usize
§private_cipher_ctx: *mut c_void
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 duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const 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