[][src]Struct secretbox::salsa20::XSalsa20

pub struct XSalsa20 { /* fields omitted */ }

XSalsa20 structure. 32-byte key, 16-byte sigma, 12-byte nonce, 4-byte counter

Methods

impl XSalsa20[src]

pub fn new(key: [u8; 32], nonce: [u8; 8], ctr: u64) -> XSalsa20[src]

Creates a new XSalsa20 struct. You need to provide a key, nonce and starting CTR

pub fn generate_block(&mut self) -> Option<Vec<u8>>[src]

Generates a single block of Salsa20 random data

pub fn generate(&mut self, amount: usize) -> Option<Vec<u8>>[src]

Generates a certain amount of Salsa20 random data

pub fn crypt(&mut self, data: &mut [u8]) -> Option<()>[src]

Encrypts/Decrypts a slice of data in-place

Trait Implementations

impl Clone for XSalsa20[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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

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

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,