about summary refs log tree commit diff stats
path: root/tests/unittests/pgp/stub_ox.c
blob: 959584252af40370606721ea7507979cc149f0aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#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;
}