md5

Struct Md5

Source
pub struct Md5 { /* private fields */ }
Expand description

The MD5 hasher

Trait Implementations§

Source§

impl BlockInput for Md5

Source§

type BlockSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>

Block size
Source§

impl Clone for Md5

Source§

fn clone(&self) -> Md5

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Md5

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Default for Md5

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl FixedOutputDirty for Md5

Source§

type OutputSize = UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>

Output size for fixed output digest
Source§

fn finalize_into_dirty(&mut self, out: &mut GenericArray<u8, U16>)

Retrieve result into provided buffer and leave hasher in a dirty state. Read more
Source§

impl Reset for Md5

Source§

fn reset(&mut self)

Reset hasher instance to its initial state and return current state.
Source§

impl Update for Md5

Source§

fn update(&mut self, input: impl AsRef<[u8]>)

Digest input data. Read more
Source§

fn chain(self, data: impl AsRef<[u8]>) -> Self
where Self: Sized,

Digest input data in a chained manner.
Source§

impl Write for Md5

Source§

fn write(&mut self, buf: &[u8]) -> Result<usize>

Writes a buffer into this writer, returning how many bytes were written. Read more
Source§

fn flush(&mut self) -> Result<()>

Flushes this output stream, ensuring that all intermediately buffered contents reach their destination. Read more
1.36.0 · Source§

fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> Result<usize, Error>

Like write, except that it writes from a slice of buffers. Read more
Source§

fn is_write_vectored(&self) -> bool

🔬This is a nightly-only experimental API. (can_vector)
Determines if this Writer has an efficient write_vectored implementation. Read more
1.0.0 · Source§

fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>

Attempts to write an entire buffer into this writer. Read more
Source§

fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>

🔬This is a nightly-only experimental API. (write_all_vectored)
Attempts to write multiple buffers into this writer. Read more
1.0.0 · Source§

fn write_fmt(&mut self, fmt: Arguments<'_>) -> Result<(), Error>

Writes a formatted string into this writer, returning any error encountered. Read more
1.0.0 · Source§

fn by_ref(&mut self) -> &mut Self
where Self: Sized,

Creates a “by reference” adapter for this instance of Write. Read more

Auto Trait Implementations§

§

impl Freeze for Md5

§

impl RefUnwindSafe for Md5

§

impl Send for Md5

§

impl Sync for Md5

§

impl Unpin for Md5

§

impl UnwindSafe for Md5

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<D> Digest for D

Source§

type OutputSize = <D as FixedOutput>::OutputSize

Output size for Digest
Source§

fn new() -> D

Create new hasher instance
Source§

fn update(&mut self, data: impl AsRef<[u8]>)

Digest data, updating the internal state. Read more
Source§

fn chain(self, data: impl AsRef<[u8]>) -> D

Digest input data in a chained manner.
Source§

fn finalize(self) -> GenericArray<u8, <D as Digest>::OutputSize>

Retrieve result and consume hasher instance.
Source§

fn finalize_reset(&mut self) -> GenericArray<u8, <D as Digest>::OutputSize>

Retrieve result and reset hasher instance. Read more
Source§

fn reset(&mut self)

Reset hasher instance to its initial state.
Source§

fn output_size() -> usize

Get output size of the hasher
Source§

fn digest(data: &[u8]) -> GenericArray<u8, <D as Digest>::OutputSize>

Convenience function to compute hash of the data. It will handle hasher creation, data feeding and finalization. Read more
Source§

impl<D> DynDigest for D
where D: Update + FixedOutput + Reset + Clone + 'static,

Source§

fn update(&mut self, data: &[u8])

Digest input data. Read more
Source§

fn finalize_reset(&mut self) -> Box<[u8]>

Retrieve result and reset hasher instance
Source§

fn finalize(self: Box<D>) -> Box<[u8]>

Retrieve result and consume boxed hasher instance
Source§

fn reset(&mut self)

Reset hasher instance to its initial state.
Source§

fn output_size(&self) -> usize

Get output size of the hasher
Source§

fn box_clone(&self) -> Box<dyn DynDigest>

Clone hasher state into a boxed trait object
Source§

impl<D> FixedOutput for D

Source§

type OutputSize = <D as FixedOutputDirty>::OutputSize

Output size for fixed output digest
Source§

fn finalize_into( self, out: &mut GenericArray<u8, <D as FixedOutput>::OutputSize>, )

Write result into provided array and consume the hasher instance.
Source§

fn finalize_into_reset( &mut self, out: &mut GenericArray<u8, <D as FixedOutput>::OutputSize>, )

Write result into provided array and reset the hasher instance.
Source§

fn finalize_fixed(self) -> GenericArray<u8, Self::OutputSize>
where Self: Sized,

Retrieve result and consume the hasher instance.
Source§

fn finalize_fixed_reset(&mut self) -> GenericArray<u8, Self::OutputSize>

Retrieve result and reset the hasher instance.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.