- consensus and secretsharing have both start time and deadline
[oweals/gnunet.git] / src / secretsharing / secretsharing_protocol.h
1 /*
2       This file is part of GNUnet
3       (C) 2012 Christian Grothoff (and other contributing authors)
4
5       GNUnet is free software; you can redistribute it and/or modify
6       it under the terms of the GNU General Public License as published
7       by the Free Software Foundation; either version 3, or (at your
8       option) any later version.
9
10       GNUnet is distributed in the hope that it will be useful, but
11       WITHOUT ANY WARRANTY; without even the implied warranty of
12       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13       General Public License for more details.
14
15       You should have received a copy of the GNU General Public License
16       along with GNUnet; see the file COPYING.  If not, write to the
17       Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18       Boston, MA 02111-1307, USA.
19 */
20
21
22 /**
23  * @file secretsharing/secretsharing_protocol.h
24  * @brief p2p message definitions for secretsharing
25  * @author Florian Dold
26  */
27
28 #ifndef GNUNET_SECRETSHARING_PROTOCOL_H
29 #define GNUNET_SECRETSHARING_PROTOCOL_H
30
31 #include "platform.h"
32 #include "gnunet_common.h"
33 #include "gnunet_protocols.h"
34 #include "secretsharing.h"
35
36
37 GNUNET_NETWORK_STRUCT_BEGIN
38
39
40 /**
41  * Consensus element data used in the first round of key generation.
42  */
43 struct GNUNET_SECRETSHARING_KeygenCommitData
44 {
45   /**
46    * Signature over the rest of the message.
47    */
48   struct GNUNET_CRYPTO_EddsaSignature signature;
49   /**
50    * Signature purpose for signing the keygen commit data.
51    */
52   struct GNUNET_CRYPTO_EccSignaturePurpose purpose;
53   /**
54    * Peer that inserts this element.
55    */
56   struct GNUNET_PeerIdentity peer;
57   /**
58    * Ephemeral paillier public key used by 'peer' for
59    * this session.
60    */
61   struct GNUNET_CRYPTO_PaillierPublicKey pubkey;
62   /**
63    * Commitment of 'peer' to his presecret.
64    */
65   struct GNUNET_HashCode commitment GNUNET_PACKED;
66 };
67
68
69 struct GNUNET_SECRETSHARING_KeygenRevealData
70 {
71   /**
72    * Signature over rest of the message.
73    */
74   struct GNUNET_CRYPTO_EddsaSignature signature;
75   /*
76    * Signature purpose for signing the keygen commit data.
77    */
78   struct GNUNET_CRYPTO_EccSignaturePurpose purpose;
79   /**
80    * Peer that inserts this element.
81    */
82   struct GNUNET_PeerIdentity peer;
83
84   /* values follow */
85 };
86
87
88 /**
89  * Data of then element put in consensus
90  * for decrypting a value.
91  */
92 struct GNUNET_SECRETSHARING_DecryptData
93 {
94   /*
95    * Signature over rest of the message.
96    */
97   struct GNUNET_CRYPTO_EddsaSignature signature;
98   /*
99    * Signature purpose for signing the keygen commit data.
100    */
101   struct GNUNET_CRYPTO_EccSignaturePurpose purpose;
102   /**
103    * Ciphertext we want to decrypt.
104    */
105   struct GNUNET_SECRETSHARING_Ciphertext ciphertext;
106   /**
107    * Peer that inserts this element.
108    */
109   struct GNUNET_PeerIdentity peer;
110   /**
111    * Partial decryption, computed as c_1^{s_i}
112    */
113   struct GNUNET_SECRETSHARING_FieldElement partial_decryption;
114   /**
115    * Commitment for the non-interactive zero knowledge proof.
116    * g^\beta, with \beta < q
117    */
118   struct GNUNET_SECRETSHARING_FieldElement nizk_commit1;
119   /**
120    * Commitment for the non-interactive zero knowledge proof.
121    * c_1^\beta, with \beta < q
122    */
123   struct GNUNET_SECRETSHARING_FieldElement nizk_commit2;
124   /**
125    * Reponse to the challenge computed from the protocol transcript.
126    * r = \beta + challenge \cdot share_i
127    */
128   struct GNUNET_SECRETSHARING_FieldElement nizk_response;
129 };
130
131 GNUNET_NETWORK_STRUCT_END
132
133 #endif