aboutsummaryrefslogtreecommitdiff
path: root/src/cadet/cadet_protocol.h
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2015-04-27 19:14:16 +0000
committerBart Polot <bart@net.in.tum.de>2015-04-27 19:14:16 +0000
commitdaac362b883b1a028d2bde33416cc65e478d69d1 (patch)
tree22ba930bfba18f96d5232958d8efedb4fa8b3f82 /src/cadet/cadet_protocol.h
parente827af34a0d71851dec015527d1a4f0925cacf10 (diff)
downloadgnunet-daac362b883b1a028d2bde33416cc65e478d69d1.tar.gz
gnunet-daac362b883b1a028d2bde33416cc65e478d69d1.zip
- doc
Diffstat (limited to 'src/cadet/cadet_protocol.h')
-rw-r--r--src/cadet/cadet_protocol.h19
1 files changed, 17 insertions, 2 deletions
diff --git a/src/cadet/cadet_protocol.h b/src/cadet/cadet_protocol.h
index 1c0a1a89f..b56cedd31 100644
--- a/src/cadet/cadet_protocol.h
+++ b/src/cadet/cadet_protocol.h
@@ -122,11 +122,26 @@ struct GNUNET_CADET_AX_KX
122 struct GNUNET_MessageHeader header; 122 struct GNUNET_MessageHeader header;
123 123
124 /** 124 /**
125 * Ephemeral public ECC key (always for NIST P-521) encoded in a format 125 * Sender's ephemeral public ECC key (always for NIST P-521) encoded in a
126 * suitable for network transmission as created using 'gcry_sexp_sprint'. 126 * format suitable for network transmission, as created
127 * using 'gcry_sexp_sprint'.
127 */ 128 */
128 struct GNUNET_CRYPTO_EcdhePublicKey ephemeral_key; 129 struct GNUNET_CRYPTO_EcdhePublicKey ephemeral_key;
129 130
131 /**
132 * Sender's next ephemeral public ECC key (always for NIST P-521) encoded in a
133 * format suitable for network transmission, as created
134 * using 'gcry_sexp_sprint'.
135 */
136 struct GNUNET_CRYPTO_EcdhePublicKey ratchet_key;
137
138 /**
139 * Receiver's ephemeral public ECC key (always for NIST P-521) encoded in a
140 * format suitable for network transmission, as created
141 * using 'gcry_sexp_sprint'.
142 */
143 struct GNUNET_CRYPTO_EcdhePublicKey peers_key;
144
130}; 145};
131 146
132 147