2015-03-22 00:12:14 +00:00
|
|
|
#include <glib.h>
|
|
|
|
|
2015-03-22 01:03:06 +00:00
|
|
|
#include "pgp/gpg.h"
|
|
|
|
|
2015-03-22 00:12:14 +00:00
|
|
|
void p_gpg_init(void) {}
|
2015-03-24 00:47:13 +00:00
|
|
|
void p_gpg_close(void) {}
|
2015-03-22 00:29:57 +00:00
|
|
|
|
2015-03-22 00:12:14 +00:00
|
|
|
GSList* p_gpg_list_keys(void)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2015-03-22 00:29:57 +00:00
|
|
|
|
2015-03-24 00:47:13 +00:00
|
|
|
GHashTable*
|
|
|
|
p_gpg_fingerprints(void)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* p_gpg_libver(void)
|
|
|
|
{
|
2015-03-22 00:29:57 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-03-22 01:03:06 +00:00
|
|
|
void p_gpg_free_key(ProfPGPKey *key) {}
|
|
|
|
|
2015-05-07 22:22:28 +01:00
|
|
|
void p_gpg_verify(const char * const barejid, const char *const sign) {}
|
2015-05-08 00:07:21 +01:00
|
|
|
|
|
|
|
char* p_gpg_sign(const char * const str, const char * const fp)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|