1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
//! 
//! [](https://docs.rs/round-based)
//! [](https://crates.io/crates/round-based)
//! [](https://discordapp.com/channels/905194001349627914/1285268686147424388)
//!
//! An MPC framework that unifies and simplifies the way of developing and working with
//! multiparty protocols (e.g. threshold signing, random beacons, etc.).
//!
//! ## Goals
//!
//! * Async friendly \
//! Async is the most simple and efficient way of doing networking in Rust
//! * Simple, configurable \
//! Protocol can be carried out in a few lines of code: check out examples.
//! * Independent of networking layer \
//! We use abstractions [`Stream`] and [`Sink`] to receive and send messages.
//!
//! ## Networking
//!
//! In order to run an MPC protocol, transport layer needs to be defined. All you have to do is to
//! implement [`Delivery`] trait which is basically a stream and a sink for receiving and sending messages.
//!
//! Message delivery should meet certain criterias that differ from protocol to protocol (refer to
//! the documentation of the protocol you're using), but usually they are:
//!
//! * Messages should be authenticated \
//! Each message should be signed with identity key of the sender. This implies having Public Key
//! Infrastructure.
//! * P2P messages should be encrypted \
//! Only recipient should be able to learn the content of p2p message
//! * Broadcast channel should be reliable \
//! Some protocols may require broadcast channel to be reliable. Simply saying, when party receives a
//! broadcast message over reliable channel it should be ensured that everybody else received the same
//! message.
//!
//! ## Features
//!
//! * `sim` enables protocol execution simulation, see [`sim`] module
//! * `sim-async` enables protocol execution simulation with tokio runtime, see [`sim::async_env`]
//! module
//! * `state-machine` provides ability to carry out the protocol, defined as async function, via Sync
//! API, see [`state_machine`] module
//! * `derive` is needed to use [`ProtocolMessage`](macro@ProtocolMessage) proc macro
//! * `runtime-tokio` enables [tokio]-specific implementation of [async runtime](runtime)
//!
//! ## Join us in Discord!
//! Feel free to reach out to us [in Discord](https://discordapp.com/channels/905194001349627914/1285268686147424388)!
extern crate alloc;
pub use ;
/// Fixes false-positive of `unused_crate_dependencies` lint that only occur in the tests
pub use *;
pub use ;
/// Derives [`ProtocolMessage`] and [`RoundMessage`] traits
///
/// See [`ProtocolMessage`] docs for more details
pub use ProtocolMessage;