about summary refs log tree commit diff stats
path: root/src/pgp
Commit message (Expand)AuthorAgeFilesLines
* Removed #AX_PREFIX_CONFIG_HJames Booth2016-03-311-1/+1
* PGP: Fixed array size for encryption keysJames Booth2016-03-291-1/+1
* PGP: Also encrypt using sender public keyJames Booth2016-03-292-11/+30
* Merge branch 'master' into plugins-cJames Booth2016-02-142-2/+2
|\
| * Updated copyrightJames Booth2016-02-142-2/+2
* | Added C plugin code from plugins branchJames Booth2016-02-141-1/+1
|/
* Show PGP error stringsJames Booth2015-12-152-6/+10
* Applied coding style to src/pgp/James Booth2015-10-252-31/+30
* PGP: Use old gpgme_io_writeJames Booth2015-09-011-1/+1
* PGP: Use old gpgme_io_writeJames Booth2015-09-011-1/+1
* PGP: Added null check for passphrase_attemptJames Booth2015-09-011-2/+6
* Save PGP passphrase when correctJames Booth2015-09-011-22/+47
* Added UI function to get PGP passphraseJames Booth2015-09-011-10/+13
* Added PGP passphrase callbackJames Booth2015-09-011-0/+34
* PGP: Format fingerprintsJames Booth2015-08-302-0/+25
* Added PGP key autocompleterJames Booth2015-08-252-0/+34
* PGP: Display whether contact public key was received or manually setJames Booth2015-08-252-9/+34
* PGP: Show key IDs for assigned public keysJames Booth2015-08-252-61/+61
* PGP: Do not save contact's fingerprint when no key foundJames Booth2015-08-251-3/+11
* Show public/private indicator when listing PGP keysJames Booth2015-08-252-26/+85
* Show public keys in PGP key listJames Booth2015-08-241-1/+1
* Removed unused barejid argument from PGP decryptionJames Booth2015-08-242-2/+2
* Added JID to log when failing to load PGP fingerprintJames Booth2015-08-231-1/+1
* 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
* | 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
cm"> * * Profanity is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Profanity is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Profanity. If not, see <https://www.gnu.org/licenses/>. * * In addition, as a special exception, the copyright holders give permission to * link the code of portions of this program with the OpenSSL library under * certain conditions as 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 XMPP_IQ_H #define XMPP_IQ_H typedef int(*ProfIdCallback)(xmpp_stanza_t *const stanza, void *const userdata); typedef void(*ProfIdFreeCallback)(void *userdata); void iq_handlers_init(void); void iq_send_stanza(xmpp_stanza_t *const stanza); void iq_id_handler_add(const char *const id, ProfIdCallback func, ProfIdFreeCallback free_func, void *userdata); void iq_disco_info_request_onconnect(gchar *jid); void iq_disco_items_request_onconnect(gchar *jid); void iq_send_caps_request(const char *const to, const char *const id, const char *const node, const char *const ver); void iq_send_caps_request_for_jid(const char *const to, const char *const id, const char *const node, const char *const ver); void iq_send_caps_request_legacy(const char *const to, const char *const id, const char *const node, const char *const ver); #endif