aboutsummaryrefslogtreecommitdiffstats
path: root/src/noise/mod.rs
blob: d48b5e013d52840008db76ba8fe901783ac9e5c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* Implementation of the:
 *
 * Noise_IKpsk2_25519_ChaChaPoly_BLAKE2s
 *
 * Protocol pattern, see: http://www.noiseprotocol.org/noise.html.
 * For documentation.
 */

mod device;
mod messages;
mod noise;
mod peer;
mod timestamp;
mod types;

// publicly exposed interface

pub use device::Device;