Moved stub_gpg.c

This commit is contained in:
James Booth
2015-06-12 23:58:44 +01:00
parent efb07f8187
commit c2c2cee6c9
2 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,32 @@
#include <glib.h>
#include "pgp/gpg.h"
void p_gpg_init(void) {}
void p_gpg_close(void) {}
GSList* p_gpg_list_keys(void)
{
return NULL;
}
GHashTable*
p_gpg_fingerprints(void)
{
return NULL;
}
const char* p_gpg_libver(void)
{
return NULL;
}
void p_gpg_free_key(ProfPGPKey *key) {}
void p_gpg_verify(const char * const barejid, const char *const sign) {}
char* p_gpg_sign(const char * const str, const char * const fp)
{
return NULL;
}