#[repr(C)]pub struct nrf_ecb_hal_data_block_t {
pub p_key: *const soc_ecb_key_t,
pub p_cleartext: *const soc_ecb_cleartext_t,
pub p_ciphertext: *mut soc_ecb_ciphertext_t,
}
Expand description
@brief AES ECB block. Used to provide multiple blocks in a single call to @ref sd_ecb_blocks_encrypt.
Fields§
§p_key: *const soc_ecb_key_t
< Pointer to the Encryption key.
p_cleartext: *const soc_ecb_cleartext_t
< Pointer to the Cleartext data.
p_ciphertext: *mut soc_ecb_ciphertext_t
< Pointer to the Ciphertext data.
Trait Implementations§
source§impl Clone for nrf_ecb_hal_data_block_t
impl Clone for nrf_ecb_hal_data_block_t
source§fn clone(&self) -> nrf_ecb_hal_data_block_t
fn clone(&self) -> nrf_ecb_hal_data_block_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 more