From 22a9154bd33af6a07e67ec72ac9f83896c403436 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Wed, 11 Mar 2020 10:06:33 +0100 Subject: [PATCH] crypto: Expose some sturcts to be used by the clients. --- src/crypto/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/crypto/mod.rs b/src/crypto/mod.rs index cf813c78..922497d3 100644 --- a/src/crypto/mod.rs +++ b/src/crypto/mod.rs @@ -18,3 +18,5 @@ mod error; mod machine; #[allow(dead_code)] mod olm; + +pub use machine::{OlmMachine, OneTimeKeys};