aboutsummaryrefslogtreecommitdiffstats
path: root/src/noise/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/noise/mod.rs')
-rw-r--r--src/noise/mod.rs18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/noise/mod.rs b/src/noise/mod.rs
new file mode 100644
index 0000000..d48b5e0
--- /dev/null
+++ b/src/noise/mod.rs
@@ -0,0 +1,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;