about summary refs log tree commit diff stats
path: root/src/pgp
Commit message (Collapse)AuthorAgeFilesLines
...
* Check for valid PGP key on startJames Booth2015-08-232-0/+30
|
* Log recipient used for PGP decryptionJames Booth2015-08-231-1/+19
|
* Tidied pgp memory allocationsJames Booth2015-08-112-42/+66
|
* Free pgp key on connectJames Booth2015-08-101-0/+2
|
* Free gpgme context on verificationJames Booth2015-08-091-0/+1
|
* Free pgp headersJames Booth2015-08-091-0/+1
|
* Dereference pgp keyJames Booth2015-08-091-1/+5
|
* Merge remote-tracking branch 'pasis/gpgme-h-check'James Booth2015-06-241-0/+2
|\
| * pgp: Added include config.hDmitry Podgorny2015-06-241-0/+2
| | | | | | | | gpgme.h checks _FILE_OFFSET_BITS macro and it's set at config.h
* | Removed NULL checks when not requiredJames Booth2015-06-241-8/+4
|/
* Free prefs strings, check for NULLs when closing pgp moduleJames Booth2015-06-241-6/+12
|
* Added /pgp setkey commandJames Booth2015-06-232-0/+150
|
* Added window encyption mode for PGPJames Booth2015-06-202-0/+8
|
* Removed TODO in gpg.cJames Booth2015-06-131-1/+0
|
* Use null check convention in gpg.cJames Booth2015-05-041-1/+1
|
* Decrypt incoming messagesJames Booth2015-03-252-5/+47
|
* Send encrypted messagesJames Booth2015-03-242-17/+78
|
* Added signature verification, /pgp fps commandJames Booth2015-03-242-1/+78
|
* Fixed tabsJames Booth2015-03-231-13/+13
|
* Fixed tabsJames Booth2015-03-231-36/+36
|
* Added pgpkeyid account setting, send signed presenceJames Booth2015-03-232-2/+92
|
* Added Id and fingerprint to pgp key listJames Booth2015-03-222-2/+29
|
* Added /pgp libver commandJames Booth2015-03-222-2/+12
|
* Fixed whitespaceJames Booth2015-03-221-1/+1
|
* Added pgp key list commandJames Booth2015-03-222-0/+122
s described in each individual source file, and * distribute linked combinations including the two. * * You must obey the GNU General Public License in all respects for all of the * code used other than OpenSSL. If you modify file(s) with this exception, you * may extend this exception to your version of the file(s), but you are not * obligated to do so. If you do not wish to do so, delete this exception * statement from your version. If you delete this exception statement from all * source files in the program, then also delete it here. * */ #ifndef CMD_AC_H #define CMD_AC_H #include "config/preferences.h" #include "command/cmd_funcs.h" void cmd_ac_init(void); void cmd_ac_uninit(void); void cmd_ac_add(const char *const value); void cmd_ac_add_help(const char *const value); void cmd_ac_add_cmd(Command *command); void cmd_ac_add_alias(ProfAlias *alias); void cmd_ac_add_alias_value(char *value); void cmd_ac_remove(const char *const value); void cmd_ac_remove_alias_value(char *value); gboolean cmd_ac_exists(char *cmd); void cmd_ac_add_form_fields(DataForm *form); void cmd_ac_remove_form_fields(DataForm *form); char* cmd_ac_complete(ProfWin *window, const char *const input); void cmd_ac_reset(ProfWin *window); #endif