1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-08-04 18:44:14 -04:00
profanity/tests/unittests/xmpp/stub_ox.c
DebXWoody 0552e50c78 OX: XEP-0373: OpenPGP for XMPP - Version 0.5.0 (2020-06-19)
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
2020-07-10 13:40:00 +02:00

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)
{
}