From af5702fccd6a846fc8458e917c216c55bce3dd80 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Tue, 7 Mar 2023 03:37:30 -0500 Subject: [PATCH] Make encryption public It's necessary in order to read encryption messages over the network. --- crypto/dkg/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crypto/dkg/src/lib.rs b/crypto/dkg/src/lib.rs index ca2c0204..e2e2c70d 100644 --- a/crypto/dkg/src/lib.rs +++ b/crypto/dkg/src/lib.rs @@ -23,7 +23,8 @@ use group::{ use ciphersuite::Ciphersuite; -mod encryption; +/// Encryption types and utilities used to secure DKG messages. +pub mod encryption; /// The distributed key generation protocol described in the /// [FROST paper](https://eprint.iacr.org/2020/852).