mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
0552e50c78
Discovering Public Keys via PEP * 4.3 Discovering Public Keys of a User * 4.4 Requesting Public Keys * Import Public Keys into GnuPG's local keyring. Issue: #1331
20 lines
282 B
C
20 lines
282 B
C
#include <stdio.h>
|
|
#include <glib.h>
|
|
#include <stdlib.h>
|
|
|
|
gboolean
|
|
ox_announce_public_key(const char* const filename)
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
void
|
|
ox_discover_public_key(const char* const jid)
|
|
{
|
|
}
|
|
|
|
void
|
|
ox_request_public_key(const char* const jid, const char* const fingerprint)
|
|
{
|
|
}
|