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 moresource§impl Debug for sha2xx_context_t
impl Debug for sha2xx_context_t
source§impl Default for sha2xx_context_t
impl Default for sha2xx_context_t
impl Copy for sha2xx_context_t
Auto Trait Implementations§
impl RefUnwindSafe for sha2xx_context_t
impl Send for sha2xx_context_t
impl Sync for sha2xx_context_t
impl Unpin for sha2xx_context_t
impl UnwindSafe for sha2xx_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