[−][src]Struct sha1::Sha1
Structure representing the state of a SHA-1 computation
Trait Implementations
impl BlockInput for Sha1
[src]
type BlockSize = U64
impl Clone for Sha1
[src]
ⓘImportant traits for Sha1fn clone(&self) -> Sha1
[src]
ⓘImportant traits for Sha1
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for Sha1
impl Default for Sha1
[src]
impl FixedOutput for Sha1
[src]
type OutputSize = U20
fn fixed_result(self) -> GenericArray<u8, Self::OutputSize>
[src]
impl Input for Sha1
[src]
fn input<B: AsRef<[u8]>>(&mut self, input: B)
[src]
fn chain<B>(self, data: B) -> Self where
B: AsRef<[u8]>,
[src]
B: AsRef<[u8]>,
impl Reset for Sha1
[src]
impl Write for Sha1
fn write(&mut self, buf: &[u8]) -> Result<usize>
fn flush(&mut self) -> Result<()>
fn write_vectored(&mut self, bufs: &[IoSlice]) -> Result<usize, Error>
1.36.0[src]
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
1.0.0[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 Sha1
impl Send for Sha1
impl Sync for Sha1
impl Unpin for Sha1
impl UnwindSafe for Sha1
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: Input + FixedOutput + Reset + Clone + Default,
[src]
D: Input + FixedOutput + Reset + Clone + Default,
type OutputSize = <D as FixedOutput>::OutputSize
fn new() -> D
[src]
fn input<B>(&mut self, data: B) where
B: AsRef<[u8]>,
[src]
B: AsRef<[u8]>,
fn chain<B>(self, data: B) -> D where
B: AsRef<[u8]>,
[src]
B: AsRef<[u8]>,
fn result(self) -> GenericArray<u8, <D as Digest>::OutputSize>
[src]
fn result_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 + Input + FixedOutput + Reset + Clone,
[src]
D: 'static + Input + FixedOutput + Reset + Clone,
fn input(&mut self, data: &[u8])
[src]
fn result_reset(&mut self) -> Box<[u8]>
[src]
fn result(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<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>,