aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_messenger_service.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_messenger_service.h')
-rw-r--r--src/include/gnunet_messenger_service.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/gnunet_messenger_service.h b/src/include/gnunet_messenger_service.h
index 5f4207d2f..90004826a 100644
--- a/src/include/gnunet_messenger_service.h
+++ b/src/include/gnunet_messenger_service.h
@@ -224,7 +224,7 @@ struct GNUNET_MESSENGER_MessageHeader
224 /** 224 /**
225 * The signature of the senders private key. 225 * The signature of the senders private key.
226 */ 226 */
227 struct GNUNET_IDENTITY_Signature signature; 227 struct GNUNET_CRYPTO_Signature signature;
228 228
229 /** 229 /**
230 * The timestamp of the message. 230 * The timestamp of the message.
@@ -258,7 +258,7 @@ struct GNUNET_MESSENGER_MessageInfo
258 /** 258 /**
259 * The senders key to verify its signatures. 259 * The senders key to verify its signatures.
260 */ 260 */
261 struct GNUNET_IDENTITY_PublicKey host_key; 261 struct GNUNET_CRYPTO_PublicKey host_key;
262 262
263 /** 263 /**
264 * The version of GNUnet Messenger API. 264 * The version of GNUnet Messenger API.
@@ -281,7 +281,7 @@ struct GNUNET_MESSENGER_MessageJoin
281 /** 281 /**
282 * The senders public key to verify its signatures. 282 * The senders public key to verify its signatures.
283 */ 283 */
284 struct GNUNET_IDENTITY_PublicKey key; 284 struct GNUNET_CRYPTO_PublicKey key;
285}; 285};
286 286
287/** 287/**
@@ -319,7 +319,7 @@ struct GNUNET_MESSENGER_MessageKey
319 /** 319 /**
320 * The new public key which replaces the current senders public key. 320 * The new public key which replaces the current senders public key.
321 */ 321 */
322 struct GNUNET_IDENTITY_PublicKey key; 322 struct GNUNET_CRYPTO_PublicKey key;
323}; 323};
324 324
325/** 325/**
@@ -671,7 +671,7 @@ GNUNET_MESSENGER_set_name (struct GNUNET_MESSENGER_Handle *handle,
671 * @param[in] handle Messenger handle to use 671 * @param[in] handle Messenger handle to use
672 * @return Used ego's public key or NULL 672 * @return Used ego's public key or NULL
673 */ 673 */
674const struct GNUNET_IDENTITY_PublicKey* 674const struct GNUNET_CRYPTO_PublicKey*
675GNUNET_MESSENGER_get_key (const struct GNUNET_MESSENGER_Handle *handle); 675GNUNET_MESSENGER_get_key (const struct GNUNET_MESSENGER_Handle *handle);
676 676
677/** 677/**
@@ -783,7 +783,7 @@ GNUNET_MESSENGER_contact_get_name (const struct GNUNET_MESSENGER_Contact *contac
783 * @param[in] contact Contact handle 783 * @param[in] contact Contact handle
784 * @return Public key of the ego used by <i>contact</i> or NULL 784 * @return Public key of the ego used by <i>contact</i> or NULL
785 */ 785 */
786const struct GNUNET_IDENTITY_PublicKey* 786const struct GNUNET_CRYPTO_PublicKey*
787GNUNET_MESSENGER_contact_get_key (const struct GNUNET_MESSENGER_Contact *contact); 787GNUNET_MESSENGER_contact_get_key (const struct GNUNET_MESSENGER_Contact *contact);
788 788
789/** 789/**