[−][src]Struct crypto_api_chachapoly::ChaCha20Ietf
An implementation of ChaCha20 (IETF-version)
Methods
impl ChaCha20Ietf[src]
pub fn cipher() -> Box<dyn Cipher>[src]
Creates a Cipher instance with ChaCha20Ietf as underlying cipher
pub fn xor(key: &[u8], nonce: &[u8], n: u32, data: &mut [u8])[src]
XORs the bytes in data with the ChaCha20 keystream for key and nonce starting at the
nth block
Warning:
This function panics if
keyis smaller or larger than 32 bytes/256 bitsnonceis smaller or larger than 12 bytes/96 bitsnexceeds2^32 - 1(which means thatdatamust be smaller than(2^32 - n) * 64)
Consider using the crypto_api-interface instead of calling this function directly
Trait Implementations
impl Cipher for ChaCha20Ietf[src]
fn info(&self) -> CipherInfo[src]
fn encrypted_len_max(&self, plaintext_len: usize) -> usize[src]
fn encrypt(
&self,
buf: &mut [u8],
plaintext_len: usize,
key: &[u8],
nonce: &[u8]
) -> Result<usize, Box<dyn Error + 'static>>[src]
&self,
buf: &mut [u8],
plaintext_len: usize,
key: &[u8],
nonce: &[u8]
) -> Result<usize, Box<dyn Error + 'static>>
fn encrypt_to(
&self,
buf: &mut [u8],
plaintext: &[u8],
key: &[u8],
nonce: &[u8]
) -> Result<usize, Box<dyn Error + 'static>>[src]
&self,
buf: &mut [u8],
plaintext: &[u8],
key: &[u8],
nonce: &[u8]
) -> Result<usize, Box<dyn Error + 'static>>
fn decrypt(
&self,
buf: &mut [u8],
ciphertext_len: usize,
key: &[u8],
nonce: &[u8]
) -> Result<usize, Box<dyn Error + 'static>>[src]
&self,
buf: &mut [u8],
ciphertext_len: usize,
key: &[u8],
nonce: &[u8]
) -> Result<usize, Box<dyn Error + 'static>>
fn decrypt_to(
&self,
buf: &mut [u8],
ciphertext: &[u8],
key: &[u8],
nonce: &[u8]
) -> Result<usize, Box<dyn Error + 'static>>[src]
&self,
buf: &mut [u8],
ciphertext: &[u8],
key: &[u8],
nonce: &[u8]
) -> Result<usize, Box<dyn Error + 'static>>
impl SecKeyGen for ChaCha20Ietf[src]
Auto Trait Implementations
impl Send for ChaCha20Ietf
impl Sync for ChaCha20Ietf
impl Unpin for ChaCha20Ietf
impl UnwindSafe for ChaCha20Ietf
impl RefUnwindSafe for ChaCha20Ietf
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, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = !
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,