aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTheJackiMonster <thejackimonster@gmail.com>2021-11-20 04:20:03 +0100
committerTheJackiMonster <thejackimonster@gmail.com>2021-11-20 04:20:03 +0100
commit788a15d1c82a562e7080d3c523b30340938d8f1d (patch)
tree3f040e52d14a79b54397526857781531d490b1b3 /include
parent41b1445ce9191b4f4a3a6355dad24d39945f3b69 (diff)
downloadlibgnunetchat-788a15d1c82a562e7080d3c523b30340938d8f1d.tar.gz
libgnunetchat-788a15d1c82a562e7080d3c523b30340938d8f1d.zip
Simplified identity keys into basic strings to integrate into ui
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/gnunet_chat_lib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/gnunet_chat_lib.h b/include/gnunet_chat_lib.h
index 2023323..ddf58f9 100644
--- a/include/gnunet_chat_lib.h
+++ b/include/gnunet_chat_lib.h
@@ -324,7 +324,7 @@ GNUNET_CHAT_get_name (const struct GNUNET_CHAT_Handle *handle);
324 * @param[in] handle Chat handle 324 * @param[in] handle Chat handle
325 * @return Public key of the handles ego or NULL 325 * @return Public key of the handles ego or NULL
326 */ 326 */
327const struct GNUNET_IDENTITY_PublicKey* 327const char*
328GNUNET_CHAT_get_key (const struct GNUNET_CHAT_Handle *handle); 328GNUNET_CHAT_get_key (const struct GNUNET_CHAT_Handle *handle);
329 329
330/** 330/**
@@ -409,7 +409,7 @@ GNUNET_CHAT_contact_get_name (const struct GNUNET_CHAT_Contact *contact);
409 * @param[in] contact Contact 409 * @param[in] contact Contact
410 * @return Public key of the contacts ego or NULL 410 * @return Public key of the contacts ego or NULL
411 */ 411 */
412const struct GNUNET_IDENTITY_PublicKey* 412const char*
413GNUNET_CHAT_contact_get_key (const struct GNUNET_CHAT_Contact *contact); 413GNUNET_CHAT_contact_get_key (const struct GNUNET_CHAT_Contact *contact);
414 414
415/** 415/**