type AESCCMCLIENT = VirtualAES128CCM<'static, Aes<'static>>;
Aliased Type§
struct AESCCMCLIENT { /* private fields */ }
Implementations
Source§impl<'a, A> VirtualAES128CCM<'a, A>
impl<'a, A> VirtualAES128CCM<'a, A>
pub fn new( mux: &'a MuxAES128CCM<'a, A>, crypt_buf: &'static mut [u8], ) -> VirtualAES128CCM<'a, A>
Trait Implementations
Source§impl<'a, A> AES128<'a> for VirtualAES128CCM<'a, A>
impl<'a, A> AES128<'a> for VirtualAES128CCM<'a, A>
Source§fn set_client(&'a self, client: &'a dyn Client<'a>)
fn set_client(&'a self, client: &'a dyn Client<'a>)
Set the client instance which will receive
crypt_done()
callbacksSource§fn set_key(&self, key: &[u8]) -> Result<(), ErrorCode>
fn set_key(&self, key: &[u8]) -> Result<(), ErrorCode>
Set the encryption key.
Returns
INVAL
if length is not AES128_KEY_SIZE
Source§fn set_iv(&self, iv: &[u8]) -> Result<(), ErrorCode>
fn set_iv(&self, iv: &[u8]) -> Result<(), ErrorCode>
Set the IV (or initial counter).
Returns
INVAL
if length is not AES128_BLOCK_SIZE
Source§fn start_message(&self)
fn start_message(&self)
Begin a new message (with the configured IV) when
crypt()
is
next called. Multiple calls to crypt()
may be made between
calls to start_message()
, allowing the encryption context to
extend over non-contiguous extents of data. Read moreSource§impl<'a, A> AES128CBC for VirtualAES128CCM<'a, A>
impl<'a, A> AES128CBC for VirtualAES128CCM<'a, A>
Source§impl<'a, A> AES128CCM<'a> for VirtualAES128CCM<'a, A>
impl<'a, A> AES128CCM<'a> for VirtualAES128CCM<'a, A>
Source§fn crypt(
&self,
buf: &'static mut [u8],
a_off: usize,
m_off: usize,
m_len: usize,
mic_len: usize,
confidential: bool,
encrypting: bool,
) -> Result<(), (ErrorCode, &'static mut [u8])>
fn crypt( &self, buf: &'static mut [u8], a_off: usize, m_off: usize, m_len: usize, mic_len: usize, confidential: bool, encrypting: bool, ) -> Result<(), (ErrorCode, &'static mut [u8])>
Try to begin the encryption/decryption process
Source§fn set_client(&self, client: &'a dyn CCMClient)
fn set_client(&self, client: &'a dyn CCMClient)
Set the client instance which will receive
crypt_done()
callbacks