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.

27 lines
425 B

#![allow(dead_code)]
#[macro_use] extern crate pin_project;
// Extensions & macros
#[macro_use] mod ext;
#[allow(unused_imports)] use ext::*;
// Wrapper for plain/symm-enc stream swapping
// TODO: We're getting rid of this and swithcing to a different model.
//mod dual;
// Crypto shit
mod crypt;
// Stream impls
mod stream;
pub use stream::{
AsyncStream,
EncryptedStream,
WriteHalf,
ReadHalf,
};