about summary refs log tree commit diff stats
path: root/src/pgp/gpg.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-03-24 23:34:24 +0000
committerJames Booth <boothj5@gmail.com>2015-03-24 23:34:24 +0000
commiteb5cb7b2f8a07c43a5cbd62e60b982493d17882b (patch)
treec46aa91ace912f8c4910b0cd57b930dbf0382db6 /src/pgp/gpg.h
parent551f7df1f765e6a495b9d73603f76805f6609130 (diff)
downloadprofani-tty-eb5cb7b2f8a07c43a5cbd62e60b982493d17882b.tar.gz
Send encrypted messages
Diffstat (limited to 'src/pgp/gpg.h')
-rw-r--r--src/pgp/gpg.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pgp/gpg.h b/src/pgp/gpg.h
index 7c058024..bd60f439 100644
--- a/src/pgp/gpg.h
+++ b/src/pgp/gpg.h
@@ -47,7 +47,8 @@ GSList* p_gpg_list_keys(void);
 GHashTable* p_gpg_fingerprints(void);
 const char* p_gpg_libver(void);
 void p_gpg_free_key(ProfPGPKey *key);
-char* p_gpg_sign_str(const char * const str, const char * const fp);
+char* p_gpg_sign(const char * const str, const char * const fp);
 void p_gpg_verify(const char * const barejid, const char *const sign);
+char* p_gpg_encrypt(const char * const barejid, const char * const message);
 
 #endif