sl-mpc-vrf 0.1.0-pre.2

Threshold MPC VRF wire protocols on Ristretto (DKG + eval)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (c) Silence Laboratories Pte. Ltd. All Rights Reserved.
// This software is licensed under the Silence Laboratories License Agreement.

mod context;
mod crypto;
mod error;
mod messages;

pub use context::{Context, Party};
pub use crypto::P2pShare;
pub use error::VrfKeygenError;
pub use messages::{VrfKeygenMsg1, VrfKeygenMsg2, VrfKeyshare};

#[cfg(test)]
pub(crate) use context::test_support;