Struct hmac_drbg::HmacDRBG [−][src]
pub struct HmacDRBG<D> where
D: Input + BlockInput + FixedOutput + Default,
D::BlockSize: ArrayLength<u8>,
D::OutputSize: ArrayLength<u8>, { /* fields omitted */ }
Implementations
impl<D> HmacDRBG<D> where
D: Input + FixedOutput + BlockInput + Reset + Clone + Default,
D::BlockSize: ArrayLength<u8>,
D::OutputSize: ArrayLength<u8>,
[src]
impl<D> HmacDRBG<D> where
D: Input + FixedOutput + BlockInput + Reset + Clone + Default,
D::BlockSize: ArrayLength<u8>,
D::OutputSize: ArrayLength<u8>,
[src]pub fn new(entropy: &[u8], nonce: &[u8], pers: &[u8]) -> Self
[src]
pub fn count(&self) -> usize
[src]
pub fn reseed(&mut self, entropy: &[u8], add: Option<&[u8]>)
[src]
pub fn generate<T: ArrayLength<u8>>(
&mut self,
add: Option<&[u8]>
) -> GenericArray<u8, T>
[src]
&mut self,
add: Option<&[u8]>
) -> GenericArray<u8, T>
pub fn generate_to_slice(&mut self, result: &mut [u8], add: Option<&[u8]>)
[src]
Auto Trait Implementations
impl<D> RefUnwindSafe for HmacDRBG<D> where
<<D as FixedOutput>::OutputSize as ArrayLength<u8>>::ArrayType: RefUnwindSafe,
<<D as FixedOutput>::OutputSize as ArrayLength<u8>>::ArrayType: RefUnwindSafe,
impl<D> Send for HmacDRBG<D>
impl<D> Sync for HmacDRBG<D>
impl<D> Unpin for HmacDRBG<D> where
<<D as FixedOutput>::OutputSize as ArrayLength<u8>>::ArrayType: Unpin,
<<D as FixedOutput>::OutputSize as ArrayLength<u8>>::ArrayType: Unpin,
impl<D> UnwindSafe for HmacDRBG<D> where
<<D as FixedOutput>::OutputSize as ArrayLength<u8>>::ArrayType: UnwindSafe,
<<D as FixedOutput>::OutputSize as ArrayLength<u8>>::ArrayType: UnwindSafe,