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.
|
|
|
#![cfg_attr(nightly, feature(asm))]
|
|
|
|
|
|
|
|
#![allow(dead_code)]
|
|
|
|
|
|
|
|
//extern crate test;
|
|
|
|
|
|
|
|
#[macro_use] mod ext; #[allow(unused_imports)] use ext::*;
|
|
|
|
|
|
|
|
pub mod key;
|
|
|
|
mod cha;
|
|
|
|
mod stream;
|
|
|
|
|
|
|
|
pub use stream::Sink;
|
|
|
|
pub use key::{
|
|
|
|
Key, IV,
|
|
|
|
};
|
|
|
|
|
|
|
|
pub use cha::keygen;
|