[][src]Struct crypto_api_chachapoly::XChaCha20

pub struct XChaCha20;

An implementation of XChaCha20

Implementations

impl XChaCha20[src]

pub fn cipher() -> Box<dyn Cipher>[src]

Creates a Cipher instance with XChaCha20 as underlying cipher

pub fn xor(key: &[u8], nonce: &[u8], n: u64, data: &mut [u8])[src]

XORs the bytes in data with the XChaCha20 keystream for key and nonce starting at the nth block

Warning:

This function panics if

  • key is smaller or larger than 32 bytes/256 bits
  • nonce is smaller or larger than 24 bytes/192 bits
  • n exceeds 2^64 - 1 (which means that data must be smaller than (2^64 - n) * 64)

Consider using the crypto_api-interface instead of calling this function directly

Trait Implementations

impl Cipher for XChaCha20[src]

impl SecKeyGen for XChaCha20[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.