pub type SHA_CTX = SHAContext;
Aliased Type§
struct SHA_CTX {
pub start: bool,
pub in_hardware: bool,
pub type_: u32,
pub state: [u32; 16],
pub buffer: [u8; 128],
pub total_bits: [u32; 4],
}
Fields§
§start: bool
§in_hardware: bool
§type_: u32
§state: [u32; 16]
§buffer: [u8; 128]
§total_bits: [u32; 4]
Trait Implementations
Source§impl Clone for SHAContext
impl Clone for SHAContext
Source§fn clone(&self) -> SHAContext
fn clone(&self) -> SHAContext
Returns a copy of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SHAContext
impl Debug for SHAContext
Source§impl Default for SHAContext
impl Default for SHAContext
Source§fn default() -> SHAContext
fn default() -> SHAContext
Returns the “default value” for a type. Read more