Struct vapcore_builtin::Blake2F[][src]

pub struct Blake2F;

The Blake2F builtin

Trait Implementations

impl Debug for Blake2F[src]

impl Implementation for Blake2F[src]

fn execute(
    &self,
    input: &[u8],
    output: &mut BytesRef<'_>
) -> Result<(), &'static str>
[src]

Format of input: [4 bytes for rounds][64 bytes for h][128 bytes for m][8 bytes for t_0][8 bytes for t_1][1 byte for f]

Auto Trait Implementations

impl RefUnwindSafe for Blake2F

impl Send for Blake2F

impl Sync for Blake2F

impl Unpin for Blake2F

impl UnwindSafe for Blake2F

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> MaybeDebug for T where
    T: Debug

impl<T> MaybeDebug for T where
    T: Debug

impl<T> Same<T> for T

type Output = T

Should always be Self

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<V, T> VZip<V> for T where
    V: MultiLane<T>,