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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
272 B
C
Raw Normal View History

2022-06-29 02:58:38 -04:00
#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;
}