Struct riot_sys::sha2xx_context_t
source · #[repr(C)]pub struct sha2xx_context_t {
pub state: [u32; 8],
pub count: [u32; 2],
pub buf: [c_uchar; 64],
}
Expand description
@brief Structure to hold the SHA-2XX context.
Fields§
§state: [u32; 8]
global state
count: [u32; 2]
processed bytes counter
buf: [c_uchar; 64]
data buffer
Trait Implementations§
source§impl Clone for sha2xx_context_t
impl Clone for sha2xx_context_t
source§fn clone(&self) -> sha2xx_context_t
fn clone(&self) -> sha2xx_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 more