[][src]Struct seahash::State

pub struct State { /* fields omitted */ }

A SeaHash state.

Implementations

impl State[src]

pub fn new(a: u64, b: u64, c: u64, d: u64) -> State[src]

Create a new state vector with some initial values.

pub fn hash(
    buf: &[u8],
    (mut a, mut b, mut c, mut d): (u64, u64, u64, u64)
) -> State
[src]

Hash a buffer with some seed.

pub fn push(&mut self, x: u64)[src]

Write another 64-bit integer into the state.

pub fn pop(&mut self, last: u64)[src]

Remove the most recently written 64-bit integer from the state.

Given the value of the most recently written u64 last, remove it from the state.

pub fn finalize(self) -> u64[src]

Finalize the state.

Trait Implementations

impl Clone for State[src]

Auto Trait Implementations

impl Send for State[src]

impl Sync for State[src]

impl Unpin for State[src]

Blanket Implementations

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

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

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

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

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

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.