aboutsummaryrefslogtreecommitdiff
path: root/src/namestore/namestore.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/namestore/namestore.h')
-rw-r--r--src/namestore/namestore.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/namestore/namestore.h b/src/namestore/namestore.h
index a8851e104..4350dbab4 100644
--- a/src/namestore/namestore.h
+++ b/src/namestore/namestore.h
@@ -88,12 +88,12 @@ struct LookupBlockResponseMessage
88 /** 88 /**
89 * Signature. 89 * Signature.
90 */ 90 */
91 struct GNUNET_CRYPTO_EccSignature signature; 91 struct GNUNET_CRYPTO_EcdsaSignature signature;
92 92
93 /** 93 /**
94 * Derived public key. 94 * Derived public key.
95 */ 95 */
96 struct GNUNET_CRYPTO_EccPublicSignKey derived_key; 96 struct GNUNET_CRYPTO_EcdsaPublicKey derived_key;
97 97
98 /* follwed by encrypted block data */ 98 /* follwed by encrypted block data */
99}; 99};
@@ -117,12 +117,12 @@ struct BlockCacheMessage
117 /** 117 /**
118 * Signature. 118 * Signature.
119 */ 119 */
120 struct GNUNET_CRYPTO_EccSignature signature; 120 struct GNUNET_CRYPTO_EcdsaSignature signature;
121 121
122 /** 122 /**
123 * Derived public key. 123 * Derived public key.
124 */ 124 */
125 struct GNUNET_CRYPTO_EccPublicSignKey derived_key; 125 struct GNUNET_CRYPTO_EcdsaPublicKey derived_key;
126 126
127 /* follwed by encrypted block data */ 127 /* follwed by encrypted block data */
128}; 128};
@@ -183,7 +183,7 @@ struct RecordStoreMessage
183 /** 183 /**
184 * The private key of the authority. 184 * The private key of the authority.
185 */ 185 */
186 struct GNUNET_CRYPTO_EccPrivateKey private_key; 186 struct GNUNET_CRYPTO_EcdsaPrivateKey private_key;
187 187
188 /* followed by: 188 /* followed by:
189 * name with length name_len 189 * name with length name_len
@@ -223,12 +223,12 @@ struct ZoneToNameMessage
223 /** 223 /**
224 * The private key of the zone to look up in 224 * The private key of the zone to look up in
225 */ 225 */
226 struct GNUNET_CRYPTO_EccPrivateKey zone; 226 struct GNUNET_CRYPTO_EcdsaPrivateKey zone;
227 227
228 /** 228 /**
229 * The public key of the target zone 229 * The public key of the target zone
230 */ 230 */
231 struct GNUNET_CRYPTO_EccPublicSignKey value_zone; 231 struct GNUNET_CRYPTO_EcdsaPublicKey value_zone;
232}; 232};
233 233
234 234
@@ -266,7 +266,7 @@ struct ZoneToNameResponseMessage
266 /** 266 /**
267 * The private key of the zone that contained the name. 267 * The private key of the zone that contained the name.
268 */ 268 */
269 struct GNUNET_CRYPTO_EccPrivateKey zone; 269 struct GNUNET_CRYPTO_EcdsaPrivateKey zone;
270 270
271 /* followed by: 271 /* followed by:
272 * name with length name_len 272 * name with length name_len
@@ -309,7 +309,7 @@ struct RecordResultMessage
309 /** 309 /**
310 * The private key of the authority. 310 * The private key of the authority.
311 */ 311 */
312 struct GNUNET_CRYPTO_EccPrivateKey private_key; 312 struct GNUNET_CRYPTO_EcdsaPrivateKey private_key;
313 313
314 /* followed by: 314 /* followed by:
315 * name with length name_len 315 * name with length name_len
@@ -331,7 +331,7 @@ struct ZoneMonitorStartMessage
331 /** 331 /**
332 * Zone key. 332 * Zone key.
333 */ 333 */
334 struct GNUNET_CRYPTO_EccPrivateKey zone; 334 struct GNUNET_CRYPTO_EcdsaPrivateKey zone;
335 335
336}; 336};
337 337
@@ -349,7 +349,7 @@ struct ZoneIterationStartMessage
349 /** 349 /**
350 * Zone key. All zeros for "all zones". 350 * Zone key. All zeros for "all zones".
351 */ 351 */
352 struct GNUNET_CRYPTO_EccPrivateKey zone; 352 struct GNUNET_CRYPTO_EcdsaPrivateKey zone;
353 353
354}; 354};
355 355