aboutsummaryrefslogtreecommitdiff
path: root/src/scalarproduct/gnunet-service-scalarproduct-ecc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/scalarproduct/gnunet-service-scalarproduct-ecc.h')
-rw-r--r--src/scalarproduct/gnunet-service-scalarproduct-ecc.h13
1 files changed, 4 insertions, 9 deletions
diff --git a/src/scalarproduct/gnunet-service-scalarproduct-ecc.h b/src/scalarproduct/gnunet-service-scalarproduct-ecc.h
index 0c40eb0c3..8dbf042b9 100644
--- a/src/scalarproduct/gnunet-service-scalarproduct-ecc.h
+++ b/src/scalarproduct/gnunet-service-scalarproduct-ecc.h
@@ -11,7 +11,7 @@
11 WITHOUT ANY WARRANTY; without even the implied warranty of 11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details. 13 Affero General Public License for more details.
14 14
15 You should have received a copy of the GNU Affero General Public License 15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. 16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17 17
@@ -37,8 +37,7 @@ GNUNET_NETWORK_STRUCT_BEGIN
37 * send a `struct AliceCryptodataMessage *`. Bob is not expected 37 * send a `struct AliceCryptodataMessage *`. Bob is not expected
38 * to respond via CADET in the meantime. 38 * to respond via CADET in the meantime.
39 */ 39 */
40struct EccServiceRequestMessage 40struct EccServiceRequestMessage {
41{
42 /** 41 /**
43 * Type is #GNUNET_MESSAGE_TYPE_SCALARPRODUCT_ECC_SESSION_INITIALIZATION 42 * Type is #GNUNET_MESSAGE_TYPE_SCALARPRODUCT_ECC_SESSION_INITIALIZATION
44 */ 43 */
@@ -53,7 +52,6 @@ struct EccServiceRequestMessage
53 * The transaction/session key used to identify a session 52 * The transaction/session key used to identify a session
54 */ 53 */
55 struct GNUNET_HashCode session_id; 54 struct GNUNET_HashCode session_id;
56
57}; 55};
58 56
59 57
@@ -62,8 +60,7 @@ struct EccServiceRequestMessage
62 * (after set intersection). Alice may send messages of this 60 * (after set intersection). Alice may send messages of this
63 * type repeatedly to transmit all values. 61 * type repeatedly to transmit all values.
64 */ 62 */
65struct EccAliceCryptodataMessage 63struct EccAliceCryptodataMessage {
66{
67 /** 64 /**
68 * Type is #GNUNET_MESSAGE_TYPE_SCALARPRODUCT_ECC_ALICE_CRYPTODATA 65 * Type is #GNUNET_MESSAGE_TYPE_SCALARPRODUCT_ECC_ALICE_CRYPTODATA
69 */ 66 */
@@ -87,8 +84,7 @@ struct EccAliceCryptodataMessage
87 * conversation may be continued with `struct BobCryptodataMultipartMessage` 84 * conversation may be continued with `struct BobCryptodataMultipartMessage`
88 * messages afterwards. 85 * messages afterwards.
89 */ 86 */
90struct EccBobCryptodataMessage 87struct EccBobCryptodataMessage {
91{
92 /** 88 /**
93 * GNUNET message header with type 89 * GNUNET message header with type
94 * #GNUNET_MESSAGE_TYPE_SCALARPRODUCT_ECC_BOB_CRYPTODATA. 90 * #GNUNET_MESSAGE_TYPE_SCALARPRODUCT_ECC_BOB_CRYPTODATA.
@@ -110,7 +106,6 @@ struct EccBobCryptodataMessage
110 * The product of the h_i^{b_i} values. 106 * The product of the h_i^{b_i} values.
111 */ 107 */
112 struct GNUNET_CRYPTO_EccPoint prod_h_i_b_i; 108 struct GNUNET_CRYPTO_EccPoint prod_h_i_b_i;
113
114}; 109};
115 110
116 111