pub struct Sha256 { /* private fields */ }Expand description
SHA-256 wrapper, provided for convenience.
Implementations§
Source§impl Sha256
impl Sha256
Sourcepub fn compute_into_bytes<Input: Bytes + ?Sized, Output: MutByteArray<CRYPTO_HASH_SHA256_BYTES>>(
output: &mut Output,
input: &Input,
)
pub fn compute_into_bytes<Input: Bytes + ?Sized, Output: MutByteArray<CRYPTO_HASH_SHA256_BYTES>>( output: &mut Output, input: &Input, )
One-time interface to compute SHA-256 digest for input, copying result
into output.
Sourcepub fn compute<Input: Bytes + ?Sized, Output: NewByteArray<CRYPTO_HASH_SHA256_BYTES>>(
input: &Input,
) -> Output
pub fn compute<Input: Bytes + ?Sized, Output: NewByteArray<CRYPTO_HASH_SHA256_BYTES>>( input: &Input, ) -> Output
One-time interface to compute SHA-256 digest for input.
Sourcepub fn compute_to_vec<Input: Bytes + ?Sized>(input: &Input) -> Vec<u8> ⓘ
pub fn compute_to_vec<Input: Bytes + ?Sized>(input: &Input) -> Vec<u8> ⓘ
Wrapper around Sha256::compute, returning a Vec. Provided for
convenience.
Sourcepub fn update<Input: Bytes + ?Sized>(&mut self, input: &Input)
pub fn update<Input: Bytes + ?Sized>(&mut self, input: &Input)
Updates SHA-256 hash state with input.
Sourcepub fn finalize<Output: NewByteArray<CRYPTO_HASH_SHA256_BYTES>>(self) -> Output
pub fn finalize<Output: NewByteArray<CRYPTO_HASH_SHA256_BYTES>>(self) -> Output
Consumes hasher and return final computed hash.
Sourcepub fn finalize_into_bytes<Output: MutByteArray<CRYPTO_HASH_SHA256_BYTES>>(
self,
output: &mut Output,
)
pub fn finalize_into_bytes<Output: MutByteArray<CRYPTO_HASH_SHA256_BYTES>>( self, output: &mut Output, )
Consumes hasher and writes final computed hash into output.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Sha256
impl RefUnwindSafe for Sha256
impl Send for Sha256
impl Sync for Sha256
impl Unpin for Sha256
impl UnsafeUnpin for Sha256
impl UnwindSafe for Sha256
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