#[repr(C)]pub struct sha1_context {
pub buffer: [u32; 16],
pub state: [u32; 5],
pub byte_count: u32,
pub buffer_offset: u8,
pub key_buffer: [u8; 64],
pub inner_hash: [u8; 20],
}
Expand description
@brief SHA-1 algorithm context @internal
Fields§
§buffer: [u32; 16]
internal buffer
state: [u32; 5]
buffering current state of hashing
byte_count: u32
already processed bytes
buffer_offset: u8
internal state variable to keep track if the buffer is filled before proceeding to hash this block
key_buffer: [u8; 64]
internal state of the key buffer
inner_hash: [u8; 20]
temporary buffer for the inner hashing
Trait Implementations§
Source§impl Clone for sha1_context
impl Clone for sha1_context
Source§fn clone(&self) -> sha1_context
fn clone(&self) -> sha1_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 moreSource§impl Debug for sha1_context
impl Debug for sha1_context
Source§impl Default for sha1_context
impl Default for sha1_context
impl Copy for sha1_context
Auto Trait Implementations§
impl Freeze for sha1_context
impl RefUnwindSafe for sha1_context
impl Send for sha1_context
impl Sync for sha1_context
impl Unpin for sha1_context
impl UnwindSafe for sha1_context
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 176 bytes