[−][src]Struct cryptonight_hash::CryptoNight
CryptoNight version 0 implementation.
Trait Implementations
impl Clone for CryptoNight[src]
fn clone(&self) -> CryptoNight[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Default for CryptoNight[src]
fn default() -> CryptoNight[src]
impl Debug for CryptoNight[src]
impl Input for CryptoNight[src]
fn input<B: AsRef<[u8]>>(&mut self, data: B)[src]
fn chain<B>(self, data: B) -> Self where
B: AsRef<[u8]>, [src]
B: AsRef<[u8]>,
impl FixedOutput for CryptoNight[src]
type OutputSize = U32
fn fixed_result(self) -> GenericArray<u8, Self::OutputSize>[src]
impl Reset for CryptoNight[src]
impl BlockInput for CryptoNight[src]
type BlockSize = <Keccak256Full as BlockInput>::BlockSize
Auto Trait Implementations
impl Send for CryptoNight
impl Sync for CryptoNight
impl Unpin for CryptoNight
impl UnwindSafe for CryptoNight
impl RefUnwindSafe for CryptoNight
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<D> Digest for D where
D: Input + FixedOutput + Reset + Clone + Default, [src]
D: Input + FixedOutput + Reset + Clone + Default,
type OutputSize = <D as FixedOutput>::OutputSize
fn new() -> D[src]
fn input<B>(&mut self, data: B) where
B: AsRef<[u8]>, [src]
B: AsRef<[u8]>,
fn chain<B>(self, data: B) -> D where
B: AsRef<[u8]>, [src]
B: AsRef<[u8]>,
fn result(self) -> GenericArray<u8, <D as Digest>::OutputSize>[src]
fn result_reset(&mut self) -> GenericArray<u8, <D as Digest>::OutputSize>[src]
fn reset(&mut self)[src]
fn output_size() -> usize[src]
fn digest(data: &[u8]) -> GenericArray<u8, <D as Digest>::OutputSize>[src]
impl<D> DynDigest for D where
D: 'static + Input + FixedOutput + Reset + Clone, [src]
D: 'static + Input + FixedOutput + Reset + Clone,
fn input(&mut self, data: &[u8])[src]
fn result_reset(&mut self) -> Box<[u8]>[src]
fn result(self: Box<D>) -> Box<[u8]>[src]
fn reset(&mut self)[src]
fn output_size(&self) -> usize[src]
fn box_clone(&self) -> Box<dyn DynDigest + 'static>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,