salsa20-core 0.1.0

Salsa Family Stream Ciphers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![no_std]
extern crate block_cipher_trait;

#[cfg(cargo_feature = "zeroize")]
extern crate zeroize;

pub extern crate std;
pub extern crate stream_cipher;

mod salsa_family_state;

pub use salsa_family_state::{SalsaFamilyCipher, SalsaFamilyState};