mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
22 lines
272 B
C
22 lines
272 B
C
#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;
|
|
}
|