ssb-handshake 0.5.1

Secret-handshake protocol for Secure Scuttlebutt
Documentation
1
2
3
4
5
6
7
8
//! Experimental synchronous implementation, using `genio` `Read`/`Write` traits,
//! mostly for no_std environments.

mod client;
pub use client::client_side;
mod server;
pub use server::server_side;
mod util;