diff --git a/Cargo.toml b/Cargo.toml index 1d26a85..2fb51bd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "vented" description = "Event driven encrypted tcp communicaton" -version = "0.1.0" +version = "0.1.1" authors = ["trivernis "] edition = "2018" readme = "README.md" diff --git a/src/crypto/mod.rs b/src/crypto/mod.rs index f90f193..e211021 100644 --- a/src/crypto/mod.rs +++ b/src/crypto/mod.rs @@ -13,6 +13,7 @@ use typenum::U24; use crate::event::Event; use crate::result::VentedResult; +pub use crypto_box::PublicKey; pub use crypto_box::SecretKey; /// A cryptographical stream object that handles encryption and decryption of streams