Struct skein::Skein512Core

source ·
pub struct Skein512Core<N: ArrayLength<u8> + 'static> { /* private fields */ }
Expand description

Skein-512 core hasher state

Trait Implementations§

source§

impl<N: ArrayLength<u8> + 'static> AlgorithmName for Skein512Core<N>

source§

fn write_alg_name(f: &mut Formatter<'_>) -> Result

Write algorithm name into f.
source§

impl<N: ArrayLength<u8> + 'static> BlockSizeUser for Skein512Core<N>

§

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

Size of the block in bytes.
§

fn block_size() -> usize

Return block size in bytes.
source§

impl<N: ArrayLength<u8> + 'static> BufferKindUser for Skein512Core<N>

§

type BufferKind = Lazy

Block buffer kind over which type operates.
source§

impl<N: Clone + ArrayLength<u8> + 'static> Clone for Skein512Core<N>

source§

fn clone(&self) -> Skein512Core<N>

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<N: ArrayLength<u8> + 'static> Debug for Skein512Core<N>

source§

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

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

impl<N: ArrayLength<u8> + 'static> Default for Skein512Core<N>

source§

fn default() -> Self

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

impl<N: ArrayLength<u8> + 'static> FixedOutputCore for Skein512Core<N>

source§

fn finalize_fixed_core( &mut self, buffer: &mut Buffer<Self>, out: &mut Output<Self> )

Finalize state using remaining data stored in the provided block buffer, write result into provided array and leave self in a dirty state.
source§

impl<N: ArrayLength<u8> + 'static> OutputSizeUser for Skein512Core<N>

§

type OutputSize = N

Size of the output in bytes.
§

fn output_size() -> usize

Return output size in bytes.
source§

impl<N: ArrayLength<u8> + 'static> Reset for Skein512Core<N>

source§

fn reset(&mut self)

Reset state to its initial value.
source§

impl<N: ArrayLength<u8> + 'static> UpdateCore for Skein512Core<N>

source§

fn update_blocks(&mut self, blocks: &[Block<Self>])

Update state using the provided data blocks.
source§

impl<N> HashMarker for Skein512Core<N>where N: ArrayLength<u8> + 'static,

Auto Trait Implementations§

§

impl<N> RefUnwindSafe for Skein512Core<N>where N: RefUnwindSafe,

§

impl<N> Send for Skein512Core<N>where N: Send,

§

impl<N> Sync for Skein512Core<N>where N: Sync,

§

impl<N> Unpin for Skein512Core<N>where N: Unpin,

§

impl<N> UnwindSafe for Skein512Core<N>where N: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere 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<T> for T

§

type Output = T

Should always be Self
source§

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

§

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 Twhere U: TryFrom<T>,

§

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.