[][src]Struct sha::shake128::Shake128

pub struct Shake128(_, _);

TODO: docs

Trait Implementations

impl Reset for Shake128[src]

fn reset(&mut self)[src]

Reset the state

impl Digest for Shake128[src]

fn digest(&mut self, msg: &[u8]) -> &mut Self[src]

fn to_bytes_len(&mut self, len: usize) -> Vec<u8>[src]

fn to_hex_len(&mut self, len: usize) -> String[src]

impl Clone for Shake128[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for Shake128[src]

Important traits for Shake128
fn default() -> Shake128[src]

Construct a default Shake128 object.

impl Hasher for Shake128[src]

fn finish(&self) -> u64[src]

Get the first 8 bytes of the state

fn write(&mut self, buf: &[u8])[src]

Write to buffer

fn write_u8(&mut self, i: u8)
1.3.0
[src]

Writes a single u8 into this hasher.

fn write_u16(&mut self, i: u16)
1.3.0
[src]

Writes a single u16 into this hasher.

fn write_u32(&mut self, i: u32)
1.3.0
[src]

Writes a single u32 into this hasher.

fn write_u64(&mut self, i: u64)
1.3.0
[src]

Writes a single u64 into this hasher.

fn write_u128(&mut self, i: u128)
1.26.0
[src]

Writes a single u128 into this hasher.

fn write_usize(&mut self, i: usize)
1.3.0
[src]

Writes a single usize into this hasher.

fn write_i8(&mut self, i: i8)
1.3.0
[src]

Writes a single i8 into this hasher.

fn write_i16(&mut self, i: i16)
1.3.0
[src]

Writes a single i16 into this hasher.

fn write_i32(&mut self, i: i32)
1.3.0
[src]

Writes a single i32 into this hasher.

fn write_i64(&mut self, i: i64)
1.3.0
[src]

Writes a single i64 into this hasher.

fn write_i128(&mut self, i: i128)
1.26.0
[src]

Writes a single i128 into this hasher.

fn write_isize(&mut self, i: isize)
1.3.0
[src]

Writes a single isize into this hasher.

impl Read for Shake128[src]

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

Read state as big-endian

fn read_vectored(&mut self, bufs: &mut [IoSliceMut]) -> Result<usize, Error>
1.36.0
[src]

Like read, except that it reads into a slice of buffers. Read more

unsafe fn initializer(&self) -> Initializer[src]

🔬 This is a nightly-only experimental API. (read_initializer)

Determines if this Reader can work with buffers of uninitialized memory. Read more

fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>
1.0.0
[src]

Read all bytes until EOF in this source, placing them into buf. Read more

fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
1.0.0
[src]

Read all bytes until EOF in this source, appending them to buf. Read more

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

Read the exact number of bytes required to fill buf. Read more

fn by_ref(&mut self) -> &mut Self
1.0.0
[src]

Creates a "by reference" adaptor for this instance of Read. Read more

fn bytes(self) -> Bytes<Self>
1.0.0
[src]

Transforms this Read instance to an [Iterator] over its bytes. Read more

fn chain<R>(self, next: R) -> Chain<Self, R> where
    R: Read
1.0.0
[src]

Creates an adaptor which will chain this stream with another. Read more

fn take(self, limit: u64) -> Take<Self>
1.0.0
[src]

Creates an adaptor which will read at most limit bytes from it. Read more

impl Write for Shake128[src]

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

Write to buffer

fn flush(&mut self) -> Result<()>[src]

Digest buffer

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

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

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

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

fn write_fmt(&mut self, fmt: Arguments) -> Result<(), Error>
1.0.0
[src]

Writes a formatted string into this writer, returning any error encountered. Read more

fn by_ref(&mut self) -> &mut Self
1.0.0
[src]

Creates a "by reference" adaptor for this instance of Write. Read more

Auto Trait Implementations

impl Send for Shake128

impl Sync for Shake128

Blanket Implementations

impl<T> ReadPadBlocksExt for T where
    T: Read
[src]

Important traits for PadBlocks<I, P, F>
fn pad_blocks<P: ReadPad, F: Fn(usize) -> P>(
    self,
    block_len: usize,
    padder: F
) -> PadBlocks<Self, P, F>
[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]