#[repr(C)]pub struct aes128_ccm_t {
pub ctx: rijndael_ctx,
pub tag_length: u8,
pub l: u8,
}Expand description
Crypto context for TLS_PSK_WITH_AES_128_CCM_8 cipher suite.
Fields§
§ctx: rijndael_ctx< AES-128 encryption context
tag_length: u8< length of MAC tag (=M)
l: u8< number of bytes in length field (= L)
Trait Implementations§
Source§impl Clone for aes128_ccm_t
impl Clone for aes128_ccm_t
Source§fn clone(&self) -> aes128_ccm_t
fn clone(&self) -> aes128_ccm_t
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for aes128_ccm_t
Auto Trait Implementations§
impl Freeze for aes128_ccm_t
impl RefUnwindSafe for aes128_ccm_t
impl Send for aes128_ccm_t
impl Sync for aes128_ccm_t
impl Unpin for aes128_ccm_t
impl UnsafeUnpin for aes128_ccm_t
impl UnwindSafe for aes128_ccm_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