Struct bitcoin_hashes::sha384::HashEngine
source · pub struct HashEngine(/* private fields */);
Expand description
Engine to compute SHA384 hash function.
Trait Implementations§
source§impl Clone for HashEngine
impl Clone for HashEngine
source§fn clone(&self) -> HashEngine
fn clone(&self) -> HashEngine
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 Default for HashEngine
impl Default for HashEngine
source§impl HashEngine for HashEngine
impl HashEngine for HashEngine
source§fn midstate(&self) -> [u8; 64]
fn midstate(&self) -> [u8; 64]
Outputs the midstate of the hash engine. This function should not be
used directly unless you really know what you’re doing.
source§const BLOCK_SIZE: usize = 128usize
const BLOCK_SIZE: usize = 128usize
Length of the hash’s internal block size, in bytes.
source§fn n_bytes_hashed(&self) -> usize
fn n_bytes_hashed(&self) -> usize
Return the number of bytes already n_bytes_hashed(inputted).
Auto Trait Implementations§
impl RefUnwindSafe for HashEngine
impl Send for HashEngine
impl Sync for HashEngine
impl Unpin for HashEngine
impl UnwindSafe for HashEngine
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