summaryrefslogtreecommitdiff
path: root/src/plugins/irc/irc-sasl.c
AgeCommit message (Collapse)Author
2021-07-02irc: remove dead assignments in SASL functionsSébastien Helleu
2021-06-15irc: drop support of DH-BLOWFISH and DH-AES SASL mechanisms (closes #175)Sébastien Helleu
2021-06-13irc: fix translation of SASL errorsSébastien Helleu
2021-06-01irc: add comments about parameter sasl_error (issue #1628)Sébastien Helleu
2021-06-01irc: add support of SASL mechanisms SCRAM-SHA-1, SCRAM-SHA-256 and ↵Sébastien Helleu
SCRAM-SHA-512 (closes #1628)
2021-05-11core: split WeeChat home in 4 directories, use XDG directories by default ↵Sébastien Helleu
(issue #1285) The 4 directories (which can be the same): - config: configuration files, certificates - data: log/upgrade files, local plugins, scripts, xfer files - cache: script repository, scripts downloaded (temporary location) - runtime: FIFO pipe, relay UNIX sockets
2021-05-11irc: evaluate options irc.server_default.sasl_key and ↵Sébastien Helleu
irc.server.xxx.sasl_key (issue #1285)
2021-01-02core: update copyright datesSébastien Helleu
2020-08-17irc: replace calls to malloc by callocSébastien Helleu
After these calls to malloc the memory is set to zero, so it's better to call calloc that does it already.
2020-04-18core: make GnuTLS a required dependencySébastien Helleu
2020-01-04core: update copyright datesSébastien Helleu
2019-04-13api: return allocated string in hook_info callback and function info_getSébastien Helleu
2019-01-01core: update copyright datesSébastien Helleu
2018-11-29core: use https for links to GNU GPL licenseSébastien Helleu
2018-11-04api: add functions string_base_{encode,decode}, remove functions ↵Sébastien Helleu
string_{encode,decode}_base64
2018-11-02api: return integer in function string_encode_base64Sébastien Helleu
2018-01-07core: fix some stylesSébastien Helleu
2018-01-05core: update copyright datesSébastien Helleu
2017-06-09irc: Remove unnecessary storesNeui
2017-05-30irc: fix crash on SASL authentication with mechanism ""ecdsa-nist256p-challenge"Sébastien Helleu
2017-05-27irc: fix memory leak in case of error in "ecdsa-nist256p-challenge" SASL ↵Sébastien Helleu
mechanism
2017-04-27irc: fix crash in case of invalid server reply during SASL authentication ↵Tobias Stoeckmann
with dh-blowfish or dh-aes mechanism These mechanisms are not recommended anyway because they are considered as insecure.
2017-01-01core: update copyright datesSébastien Helleu
2016-08-13irc: fix NULL pointer derefence in case of memory error in irc_sasl_dh()Sébastien Helleu
2016-01-01core: update copyright datesSébastien Helleu
2015-04-30core: add comments after some #endifSébastien Helleu
2015-01-21irc: fix compilation of SASL "ecdsa-nist256p-challenge"Sébastien Helleu
Gnutls >= 3.0.21 is now required for SASL "ecdsa-nist256p-challenge". Gnutls >= 3.3.0 is required to display the public key when connecting.
2015-01-19irc: add support of "ecdsa-nist256p-challenge" SASL mechanism (closes #251)Sébastien Helleu
2015-01-01core: update copyright datesSébastien Helleu
2014-01-01core: update copyright datesSebastien Helleu
2013-05-01irc: add support of "dh-aes" SASL mechanism (patch #8020)Elizabeth Myers
2013-01-01core: update copyright datesSebastien Helleu
2012-12-15core: move comments with description of C file to top of filesSebastien Helleu
2012-12-13core: reformat comments for functionsSebastien Helleu
2012-08-14core: add new plugin "script" (scripts manager, replacing scripts weeget.py ↵Sebastien Helleu
and script.pl)
2012-02-29irc: add support of "external" SASL mechanism (task #11864)Kyle Fuller
2012-02-19irc: fix memory leak in SASL/blowfish authenticationSebastien Helleu
2012-01-08core: update copyright datesSebastien Helleu
2011-10-26core: remove unneeded whitespaceSebastien Helleu
2011-08-12irc: fix too small buffer for encoded base64 string used by SASL authenticationSebastien Helleu
2011-01-01Update copyright datesSebastien Helleu
2010-10-31Remove dead assignmentsSebastien Helleu
2010-06-22Update licenses and copyrights, add missing author names in sourcesSebastien Helleu
2010-04-08Reformat and add comments for description of C sourcesSebastien Helleu
2010-03-19Reformat multi-line commentsSebastien Helleu
2010-03-09Add missing initialization of variable in function irc_sasl_mechanism_plainSebastien Helleu
2010-02-18Add mechanism DH-BLOWFISH for SASL authentication with IRC serverSebastien Helleu