pub type BLAKE2B_CTX = blake2b_state_st;
Aliased Type§
struct BLAKE2B_CTX {
pub h: [u64; 8],
pub t_low: u64,
pub t_high: u64,
pub block: [u8; 128],
pub block_used: usize,
}
Fields§
§h: [u64; 8]
§t_low: u64
§t_high: u64
§block: [u8; 128]
§block_used: usize
Trait Implementations
Source§impl Clone for blake2b_state_st
impl Clone for blake2b_state_st
Source§fn clone(&self) -> blake2b_state_st
fn clone(&self) -> blake2b_state_st
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