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