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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
// Copyright (c) Silence Laboratories Pte. Ltd. All Rights Reserved.
// This software is licensed under the Silence Laboratories License Agreement.
//! Message types for the Distributed Signature Generation (DSG) Protocol
//!
//! This module defines the message structures used in the DSG protocol for
//! communication between participants. These messages are designed to be
//! memory-safe and efficiently serializable.
//!
//! # Safety
//!
//! The message structures use `bytemuck` traits to ensure safe memory
//! operations and alignment requirements. All structures are marked with
//! `#[repr(C)]` to guarantee a stable memory layout.
use ;
use ;
use ;
use ;
use crate;
/// Message type for the first round of the signature generation protocol
///
/// This message contains the initial commitment and public key information
/// that each participant broadcasts to all other participants.
///
/// # Memory Layout
///
/// The structure is marked with `#[repr(C)]` to ensure a stable memory layout
/// and uses `AnyBitPattern` and `NoUninit` for safe memory operations.
/// Message type for the second round of the signature generation protocol (P2P)
///
/// This message is sent peer-to-peer between participants and contains
/// the final session ID and encrypted data for the MtA protocol.
///
/// # Memory Layout
///
/// The structure is marked with `#[repr(C)]` to ensure a stable memory layout
/// and uses `AnyBitPattern` and `NoUninit` for safe memory operations.
/// Message type for the third round of the signature generation protocol (P2P)
///
/// This message is sent peer-to-peer between participants and contains
/// various encrypted data points and commitments needed for the signature.
///
/// # Memory Layout
///
/// The structure is marked with `#[repr(C)]` to ensure a stable memory layout
/// and uses `AnyBitPattern` and `NoUninit` for safe memory operations.
/// Message type for the fourth round of the signature generation protocol
///
/// This message contains the final signature components that each participant
/// broadcasts to all other participants.
///
/// # Memory Layout
///
/// The structure is marked with `#[repr(C)]` to ensure a stable memory layout
/// and uses `AnyBitPattern` and `NoUninit` for safe memory operations.
/// Result of the pre-signature phase for a party
///
/// This structure contains all the necessary information from the pre-signature
/// phase that will be needed to complete the signature in the finish phase.
///
/// # Memory Layout
///
/// The structure is marked with `#[repr(C)]` to ensure a stable memory layout
/// and uses `AnyBitPattern` and `NoUninit` for safe memory operations.
/// It also implements `Zeroize` to ensure sensitive data is securely erased.
/// Partial signature from a single party
///
/// This structure contains a party's contribution to the final signature.
/// It implements `Zeroize` and `ZeroizeOnDrop` to ensure sensitive data
/// is securely erased when the structure is dropped.
pub