[−][src]Struct sha3::Sha3_224
SHA-3-224 hash function.
Trait Implementations
impl BlockInput for Sha3_224
[src]
type BlockSize = U144
Block size
impl Clone for Sha3_224
[src]
impl Debug for Sha3_224
[src]
impl Default for Sha3_224
[src]
impl FixedOutputDirty for Sha3_224
[src]
type OutputSize = U28
Output size for fixed output digest
fn finalize_into_dirty(&mut self, out: &mut Output<Self>)
[src]
impl Reset for Sha3_224
[src]
impl Update for Sha3_224
[src]
fn update(&mut self, input: impl AsRef<[u8]>)
[src]
fn chain(self, data: impl AsRef<[u8]>) -> Self
[src]
impl Write for Sha3_224
[src]
fn write(&mut self, buf: &[u8]) -> Result<usize>
[src]
fn flush(&mut self) -> Result<()>
[src]
fn write_vectored(&mut self, bufs: &[IoSlice]) -> Result<usize, Error>
1.36.0[src]
fn is_write_vectored(&self) -> bool
[src]
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
1.0.0[src]
fn write_all_vectored(&mut self, bufs: &mut [IoSlice]) -> Result<(), Error>
[src]
fn write_fmt(&mut self, fmt: Arguments) -> Result<(), Error>
1.0.0[src]
fn by_ref(&mut self) -> &mut Self
1.0.0[src]
Auto Trait Implementations
impl RefUnwindSafe for Sha3_224
impl Send for Sha3_224
impl Sync for Sha3_224
impl Unpin for Sha3_224
impl UnwindSafe for Sha3_224
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<D> Digest for D where
D: FixedOutput + Update + Reset + Clone + Default,
[src]
D: FixedOutput + Update + Reset + Clone + Default,
type OutputSize = <D as FixedOutput>::OutputSize
Output size for Digest
fn new() -> D
[src]
fn update(&mut self, data: impl AsRef<[u8]>)
[src]
fn chain(self, data: impl AsRef<[u8]>) -> D
[src]
fn finalize(self) -> GenericArray<u8, <D as Digest>::OutputSize>
[src]
fn finalize_reset(&mut self) -> GenericArray<u8, <D as Digest>::OutputSize>
[src]
fn reset(&mut self)
[src]
fn output_size() -> usize
[src]
fn digest(data: &[u8]) -> GenericArray<u8, <D as Digest>::OutputSize>
[src]
impl<D> DynDigest for D where
D: 'static + FixedOutput + Update + Reset + Clone,
[src]
D: 'static + FixedOutput + Update + Reset + Clone,
fn update(&mut self, data: &[u8])
[src]
fn finalize_reset(&mut self) -> Box<[u8]>
[src]
fn finalize(self: Box<D>) -> Box<[u8]>
[src]
fn reset(&mut self)
[src]
fn output_size(&self) -> usize
[src]
fn box_clone(&self) -> Box<dyn DynDigest + 'static>
[src]
impl<D> FixedOutput for D where
D: FixedOutputDirty + Reset,
[src]
D: FixedOutputDirty + Reset,
type OutputSize = <D as FixedOutputDirty>::OutputSize
Output size for fixed output digest
fn finalize_into(
self,
out: &mut GenericArray<u8, <D as FixedOutput>::OutputSize>
)
[src]
self,
out: &mut GenericArray<u8, <D as FixedOutput>::OutputSize>
)
fn finalize_into_reset(
&mut self,
out: &mut GenericArray<u8, <D as FixedOutput>::OutputSize>
)
[src]
&mut self,
out: &mut GenericArray<u8, <D as FixedOutput>::OutputSize>
)
fn finalize_fixed(self) -> GenericArray<u8, Self::OutputSize>
[src]
fn finalize_fixed_reset(&mut self) -> GenericArray<u8, Self::OutputSize>
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,