falcotcp 0.1.0

Secure TCP server/client with AES-256-GCM encryption, authentication, and messaging. Ideal for trusted communication between services, with sync/async worker balancing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(feature = "thread")]
mod thread_impl;
#[cfg(feature = "tokio-runtime")]
mod tokio_impl;
#[cfg(feature = "async-std-runtime")]
mod asyncstd_impl;

#[cfg(feature = "thread")]
pub use thread_impl::*;
#[cfg(feature = "tokio-runtime")]
pub use tokio_impl::*;
#[cfg(feature = "async-std-runtime")]
pub use asyncstd_impl::*;