esp_idf_svc::hal::sys

Type Alias SHA_CTX

Source
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

Source§

fn clone(&self) -> SHAContext

Returns a copy of the value. Read more
1.0.0§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for SHAContext

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Default for SHAContext

Source§

fn default() -> SHAContext

Returns the “default value” for a type. Read more
Source§

impl Copy for SHAContext