pub struct SalsaCore<R: Unsigned> { /* private fields */ }
Expand description
The Salsa20 core function.
Implementations§
Trait Implementations§
source§impl<R: Unsigned> BlockSizeUser for SalsaCore<R>
impl<R: Unsigned> BlockSizeUser for SalsaCore<R>
source§impl<R: Unsigned> IvSizeUser for SalsaCore<R>
impl<R: Unsigned> IvSizeUser for SalsaCore<R>
source§impl<R: Unsigned> KeyIvInit for SalsaCore<R>
impl<R: Unsigned> KeyIvInit for SalsaCore<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 SalsaCore<R>
impl<R: Unsigned> KeySizeUser for SalsaCore<R>
source§impl<R: Unsigned> StreamCipherCore for SalsaCore<R>
impl<R: Unsigned> StreamCipherCore for SalsaCore<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 SalsaCore<R>
impl<R: Unsigned> StreamCipherSeekCore for SalsaCore<R>
impl<R: Unsigned> ZeroizeOnDrop for SalsaCore<R>
Auto Trait Implementations§
impl<R> Freeze for SalsaCore<R>
impl<R> RefUnwindSafe for SalsaCore<R>where
R: RefUnwindSafe,
impl<R> Send for SalsaCore<R>where
R: Send,
impl<R> Sync for SalsaCore<R>where
R: Sync,
impl<R> Unpin for SalsaCore<R>where
R: Unpin,
impl<R> UnwindSafe for SalsaCore<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