You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
chacha20stream/src/lib.rs

26 lines
436 B

#![cfg_attr(nightly, feature(asm))]
#![allow(dead_code)]
//extern crate test;
#[cfg(feature="async")]
#[macro_use] extern crate pin_project;
#[macro_use] mod ext; #[allow(unused_imports)] use ext::*;
pub mod key;
mod cha;
mod stream;
mod bytes;
#[cfg(feature="async")] mod stream_async;
#[cfg(feature="async")] pub use stream_async::Sink as AsyncSink;
pub use stream::Sink;
pub use key::{
Key, IV,
};
pub use cha::keygen;