1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-15 19:38:07 -04:00
profanity/tests/unittests/pgp/stub_ox.c
2022-06-29 09:17:15 +02:00

22 lines
272 B
C

#include <glib.h>
#include "pgp/gpg.h"
gboolean
ox_is_private_key_available(const char* const barejid)
{
return FALSE;
}
gboolean
ox_is_public_key_available(const char* const barejid)
{
return FALSE;
}
GHashTable*
ox_gpg_public_keys(void)
{
return NULL;
}