Struct blake2b_simd::blake2bp::State [−][src]
pub struct State { /* fields omitted */ }
An incremental hasher for BLAKE2bp, just like the State
type for
BLAKE2b.
Example
use blake2b_simd::blake2bp; let mut state = blake2bp::State::new(); state.update(b"foo"); state.update(b"bar"); let hash = state.finalize(); let expected = "e654427b6ef02949471712263e59071abbb6aa94855674c1daeed6cfaf127c33\ dfa3205f7f7f71e4f0673d25fa82a368488911f446bccd323af3ab03f53e56e5"; assert_eq!(expected, &hash.to_hex());
Implementations
impl State
[src]
impl State
[src]pub fn new() -> Self
[src]
Equivalent to State::default()
or Params::default().to_state()
.
pub fn update(&mut self, input: &[u8]) -> &mut Self
[src]
Add input to the hash. You can call update
any number of times.
pub fn finalize(&self) -> Hash
[src]
Finalize the state and return a Hash
. This method is idempotent, and calling it multiple
times will give the same result. It’s also possible to update
with more input in between.
pub fn count(&self) -> u128
[src]
Return the total number of bytes input so far.
Note that count
doesn’t include the bytes of the key block, if any.
It’s exactly the total number of input bytes fed to update
.
Trait Implementations
impl Write for State
[src]
impl Write for State
[src]fn write(&mut self, buf: &[u8]) -> Result<usize>
[src]
fn flush(&mut self) -> Result<()>
[src]
pub fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> Result<usize, Error>
1.36.0[src]
pub fn is_write_vectored(&self) -> bool
[src]
pub fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
1.0.0[src]
pub fn write_all_vectored(
&mut self,
bufs: &mut [IoSlice<'_>]
) -> Result<(), Error>
[src]
&mut self,
bufs: &mut [IoSlice<'_>]
) -> Result<(), Error>