Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-02-25 | core: add info_hashtable "secured_data" | Sébastien Helleu | |
2021-01-02 | core: update copyright dates | Sébastien Helleu | |
2020-03-01 | core: move crypto functions to wee-crypto.c, rename API function string_hash ↵ | Sébastien Helleu | |
to crypto_hash | |||
2020-03-01 | core: merge functions string_hash_binary and string_hash into a single ↵ | Sébastien Helleu | |
function string_hash | |||
2020-03-01 | core: add function secure_hash_pbkdf2 | Sébastien Helleu | |
2020-02-29 | core: call function secure_hash_binary in secure_derive_key to compute ↵ | Sébastien Helleu | |
SHA512 hash | |||
2020-02-29 | core: return 0 in case of invalid parameters received in function ↵ | Sébastien Helleu | |
secure_derive_key | |||
2020-02-29 | core: add functions to compute binary/hex hash of data | Sébastien Helleu | |
2020-01-04 | core: update copyright dates | Sébastien Helleu | |
2019-06-15 | api: add argument "strip_items" in function string_split | Sébastien Helleu | |
2019-03-10 | core: replace argument "keep_eol" by "flags" in function string_split ↵ | Sébastien Helleu | |
(closes #1322) | |||
2019-01-01 | core: update copyright dates | Sébastien Helleu | |
2018-11-29 | core: use https for links to GNU GPL license | Sébastien Helleu | |
2018-11-04 | api: add functions string_base_{encode,decode}, remove functions ↵ | Sébastien Helleu | |
string_{encode,decode}_base64 | |||
2018-11-02 | core: add support of TOTP generation/validation (Time-based One-Time Password) | Sébastien Helleu | |
2018-10-27 | core: split wee-secure.c into 3 files (secured data functions, buffer and ↵ | Sébastien Helleu | |
config) | |||
2018-01-14 | core: reinitialize config file pointer to NULL after an error on section ↵ | Sébastien Helleu | |
creation | |||
2018-01-05 | core: update copyright dates | Sébastien Helleu | |
2017-06-10 | core: remove unused functions secure_search_hash_algo and ↵ | Sébastien Helleu | |
secure_search_cipher (issue #1012) | |||
2017-06-03 | core, script: remove unused config section variables | Simmo Saan | |
2017-01-01 | core: update copyright dates | Sébastien Helleu | |
2016-03-21 | core: add pointer in some callbacks (closes #406) | Sébastien Helleu | |
This pointer is the first argument received by callbacks, and the existing argument "data" is now automatically freed by WeeChat when the object containing the callback is removed. With this new pointer, the linked list of callbacks in scripts has been removed. This will improve speed of scripts (using a lot of hooks), reduce memory used by scripts and reduce time to unload scripts. Following functions are affected in the C API: * exec_on_files * config_new * config_new_section * config_new_option * hook_command * hook_command_run * hook_timer * hook_fd * hook_process * hook_process_hashtable * hook_connect * hook_print * hook_signal * hook_hsignal * hook_config * hook_completion * hook_modifier * hook_info * hook_info_hashtable * hook_infolist * hook_hdata * hook_focus * unhook_all_plugin * buffer_new * bar_item_new * upgrade_new * upgrade_read | |||
2016-01-01 | core: update copyright dates | Sébastien Helleu | |
2015-07-04 | core: add missing comments before functions when the result must be freed ↵ | Sébastien Helleu | |
after use | |||
2015-06-28 | core: allow ctrl-C to exit WeeChat when the passphrase is asked on startup ↵ | Sébastien Helleu | |
(closes #452) | |||
2015-01-01 | core: update copyright dates | Sébastien Helleu | |
2014-06-28 | core: update message displayed when passphrase is not set on /secure buffer | Sébastien Helleu | |
2014-06-28 | core: do not display content of passphrase on /secure buffer | Sébastien Helleu | |
2014-02-22 | core: fix uninitialized value in functions secure_{encrypt|decrypt}_data (in ↵ | Sebastien Helleu | |
case of insufficient memory) | |||
2014-01-01 | core: update copyright dates | Sebastien Helleu | |
2013-11-23 | core: free secured data on exit | Sebastien Helleu | |
2013-11-09 | core: remove unneeded warning when read of sec.conf fails (another warning ↵ | Sebastien Helleu | |
is already displayed) | |||
2013-08-02 | core: change the message displayed when passphrase is not given on startup | Sebastien Helleu | |
2013-08-02 | core: 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-02 | core: update translations | Sebastien Helleu | |
2013-07-30 | core: 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-30 | core: use variable "items_count" directly from hashtable without calling ↵ | Sebastien Helleu | |
function hashtable_get_integer | |||
2013-07-28 | core: add option sec.crypt.passphrase_file | Sebastien Helleu | |
2013-07-27 | core: add secured data with optional encryption in file sec.conf | Sebastien Helleu | |