Struct flipperzero_sys::md5_context
source · #[repr(C)]pub struct md5_context {
pub total: [u32; 2],
pub state: [u32; 4],
pub buffer: [c_uchar; 64],
}Expand description
MD5 context structure
Fields§
§total: [u32; 2]number of bytes processed
state: [u32; 4]intermediate digest state
buffer: [c_uchar; 64]data block being processed
Trait Implementations§
source§impl Clone for md5_context
impl Clone for md5_context
source§fn clone(&self) -> md5_context
fn clone(&self) -> md5_context
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