Struct chacha20::ChaChaCore 
source · pub struct ChaChaCore<R: Unsigned> { /* private fields */ }Expand description
The ChaCha core function.
Trait Implementations§
source§impl<R: Unsigned> BlockSizeUser for ChaChaCore<R>
 
impl<R: Unsigned> BlockSizeUser for ChaChaCore<R>
source§impl<R: Unsigned> Drop for ChaChaCore<R>
 
impl<R: Unsigned> Drop for ChaChaCore<R>
source§impl<R: Unsigned> IvSizeUser for ChaChaCore<R>
 
impl<R: Unsigned> IvSizeUser for ChaChaCore<R>
source§impl<R: Unsigned> KeyIvInit for ChaChaCore<R>
 
impl<R: Unsigned> KeyIvInit for ChaChaCore<R>
source§fn new_from_slices(key: &[u8], iv: &[u8]) -> Result<Self, InvalidLength>
 
fn new_from_slices(key: &[u8], iv: &[u8]) -> Result<Self, InvalidLength>
Create new value from variable length key and nonce.
source§fn generate_key(
    rng: impl CryptoRng + RngCore
) -> GenericArray<u8, Self::KeySize>
 
fn generate_key( rng: impl CryptoRng + RngCore ) -> GenericArray<u8, Self::KeySize>
Generate random key using the provided 
CryptoRng.source§fn generate_iv(rng: impl CryptoRng + RngCore) -> GenericArray<u8, Self::IvSize>
 
fn generate_iv(rng: impl CryptoRng + RngCore) -> GenericArray<u8, Self::IvSize>
Generate random IV using the provided 
CryptoRng.source§fn generate_key_iv(
    rng: impl CryptoRng + RngCore
) -> (GenericArray<u8, Self::KeySize>, GenericArray<u8, Self::IvSize>)
 
fn generate_key_iv( rng: impl CryptoRng + RngCore ) -> (GenericArray<u8, Self::KeySize>, GenericArray<u8, Self::IvSize>)
Generate random key and nonce using the provided 
CryptoRng.source§impl<R: Unsigned> KeySizeUser for ChaChaCore<R>
 
impl<R: Unsigned> KeySizeUser for ChaChaCore<R>
source§impl<R: Unsigned> StreamCipherCore for ChaChaCore<R>
 
impl<R: Unsigned> StreamCipherCore for ChaChaCore<R>
source§fn remaining_blocks(&self) -> Option<usize>
 
fn remaining_blocks(&self) -> Option<usize>
Return number of remaining blocks before cipher wraps around. Read more
source§fn process_with_backend(
    &mut self,
    f: impl StreamClosure<BlockSize = Self::BlockSize>
)
 
fn process_with_backend( &mut self, f: impl StreamClosure<BlockSize = Self::BlockSize> )
Process data using backend provided to the rank-2 closure.
source§fn write_keystream_block(
    &mut self,
    block: &mut GenericArray<u8, Self::BlockSize>
)
 
fn write_keystream_block( &mut self, block: &mut GenericArray<u8, Self::BlockSize> )
Write keystream block. Read more
source§fn write_keystream_blocks(
    &mut self,
    blocks: &mut [GenericArray<u8, Self::BlockSize>]
)
 
fn write_keystream_blocks( &mut self, blocks: &mut [GenericArray<u8, Self::BlockSize>] )
Write keystream blocks. Read more
source§fn apply_keystream_block_inout(
    &mut self,
    block: InOut<'_, '_, GenericArray<u8, Self::BlockSize>>
)
 
fn apply_keystream_block_inout( &mut self, block: InOut<'_, '_, GenericArray<u8, Self::BlockSize>> )
Apply keystream block. Read more
source§fn apply_keystream_blocks(
    &mut self,
    blocks: &mut [GenericArray<u8, Self::BlockSize>]
)
 
fn apply_keystream_blocks( &mut self, blocks: &mut [GenericArray<u8, Self::BlockSize>] )
Apply keystream blocks. Read more
source§fn apply_keystream_blocks_inout(
    &mut self,
    blocks: InOutBuf<'_, '_, GenericArray<u8, Self::BlockSize>>
)
 
fn apply_keystream_blocks_inout( &mut self, blocks: InOutBuf<'_, '_, GenericArray<u8, Self::BlockSize>> )
Apply keystream blocks. Read more
source§fn try_apply_keystream_partial(
    self,
    buf: InOutBuf<'_, '_, u8>
) -> Result<(), StreamCipherError>
 
fn try_apply_keystream_partial( self, buf: InOutBuf<'_, '_, u8> ) -> Result<(), StreamCipherError>
Try to apply keystream to data not divided into blocks. Read more
source§impl<R: Unsigned> StreamCipherSeekCore for ChaChaCore<R>
 
impl<R: Unsigned> StreamCipherSeekCore for ChaChaCore<R>
impl<R: Unsigned> ZeroizeOnDrop for ChaChaCore<R>
Auto Trait Implementations§
impl<R> RefUnwindSafe for ChaChaCore<R>where R: RefUnwindSafe,
impl<R> Send for ChaChaCore<R>where R: Send,
impl<R> Sync for ChaChaCore<R>where R: Sync,
impl<R> Unpin for ChaChaCore<R>where R: Unpin,
impl<R> UnwindSafe for ChaChaCore<R>where R: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more