summaryrefslogtreecommitdiff
path: root/src/core/wee-secure.c
AgeCommit message (Collapse)Author
2015-07-04core: add missing comments before functions when the result must be freed ↵Sébastien Helleu
after use
2015-06-28core: allow ctrl-C to exit WeeChat when the passphrase is asked on startup ↵Sébastien Helleu
(closes #452)
2015-01-01core: update copyright datesSébastien Helleu
2014-06-28core: update message displayed when passphrase is not set on /secure bufferSébastien Helleu
2014-06-28core: do not display content of passphrase on /secure bufferSébastien Helleu
2014-02-22core: fix uninitialized value in functions secure_{encrypt|decrypt}_data (in ↵Sebastien Helleu
case of insufficient memory)
2014-01-01core: update copyright datesSebastien Helleu
2013-11-23core: free secured data on exitSebastien Helleu
2013-11-09core: remove unneeded warning when read of sec.conf fails (another warning ↵Sebastien Helleu
is already displayed)
2013-08-02core: change the message displayed when passphrase is not given on startupSebastien Helleu
2013-08-02core: remove use of function gcry_kdf_derive so that it compiles with ↵Sebastien Helleu
libgcrypt < 1.5.0 The key built with salt + passphrase has changed, so old encrypted data in file sec.conf can not be decrypted with this new version.
2013-08-02core: update translationsSebastien Helleu
2013-07-30core: in case of empty passphrase, keep encrypted data in memory until the ↵Sebastien Helleu
user runs /secure decrypt (with the good passphrase) If user gives no passphrase (for example one space when prompted), the encrypted data read in sec.conf will be stored in a separate hashtable. While this hashtable contains something, it is not allowed to do any operation on passphrase or secured data (and it is not allowed to reload sec.conf). The user can decrypt data with /secure decrypt <passphrase>.
2013-07-30core: use variable "items_count" directly from hashtable without calling ↵Sebastien Helleu
function hashtable_get_integer
2013-07-28core: add option sec.crypt.passphrase_fileSebastien Helleu
2013-07-27core: add secured data with optional encryption in file sec.confSebastien Helleu