Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-01-09 | [ci skip] Merge pull request #5376 from jim-parry/copyright-update | Andrey Andreev | 4 | -8/+8 | |
Annual copyright update Conflicts resolved: system/libraries/Cache/drivers/Cache_apcu.php | |||||
2017-06-05 | [ci skip] Merge pull request #5143 from TysonAndre/misc-phpdoc-nits | Andrey Andreev | 1 | -1/+1 | |
Fix misc inconsistencies between code and doc comments | |||||
2017-01-19 | hash_pbkdf2() byte-safety again ... actually tell mbstring to use 8bit | Andrey Andreev | 1 | -2/+2 | |
2017-01-19 | hash_pbkdf2() byte-safety | Andrey Andreev | 1 | -4/+13 | |
2017-01-19 | More byte-safety | Andrey Andreev | 1 | -4/+4 | |
2017-01-03 | Update copyright data to 2017 | Master Yoda | 4 | -8/+8 | |
2016-08-23 | Merge pull request #4781 from tianhe1986/develop_hash_pbkdf2 | Andrey Andreev | 1 | -1/+1 | |
Hash: processing algorithm name case-insensitively in hash_pbkdf2() | |||||
2016-08-22 | Merge pull request #4780 from tianhe1986/develop_standard_hex2bin | Andrey Andreev | 1 | -1/+1 | |
[ci skip] Trigger error for "resource" type in hex2bin() inputs | |||||
2016-07-28 | Remove dead code written for PHP 5.2 | Andrey Andreev | 2 | -208/+1 | |
2016-05-20 | Merge pull request #4638 from kasimtan/phpdoc_fixes | Andrey Andreev | 1 | -1/+1 | |
[ci skip] Fixed PHPDoc parameter name and type discrepancies | |||||
2016-03-22 | random_bytes()-related improvements | Andrey Andreev | 1 | -4/+22 | |
See #4260 | |||||
2016-01-11 | [ci skip] Update ellislab.com links to https too | Andrey Andreev | 4 | -4/+4 | |
2016-01-11 | [ci skip] Update codeigniter.com links to https | Andrey Andreev | 4 | -8/+8 | |
2016-01-11 | [ci skip] Bump year to 2016 | Andrey Andreev | 4 | -8/+8 | |
2015-04-01 | Mitigate potential DoS attacks against hash_pbkdf2() | Andrey Andreev | 1 | -2/+49 | |
Related: #3720 | |||||
2015-03-12 | Correct a comment link typo | bjjay | 1 | -1/+1 | |
2015-02-15 | add <!DOCTYPE html> | Tjoosten | 1 | -1/+2 | |
2015-01-21 | Remove closing blocks at end of PHP files | vlakoff | 4 | -12/+0 | |
2015-01-09 | Bulk (mostly documentation) update | Andrey Andreev | 4 | -12/+12 | |
- Remove PHP version from license notices - Bump year number in copyright notices - Recommend PHP 5.4 or newer to be used - Tell Travis-CI to test on PHP 5.3.0 instead of the latest 5.3 version Related: #3450 | |||||
2014-10-27 | [ci skip] Switch to MIT license; close #3293 | Andrey Andreev | 4 | -56/+100 | |
2014-10-02 | stream_set_chunk_size() requires PHP 5.4 | Andrey Andreev | 1 | -1/+3 | |
2014-09-30 | Make sure we don't waste entropy | Andrey Andreev | 1 | -0/+1 | |
2014-07-07 | Fix potential bugs in password_hash(), CI_Encryption | Andrey Andreev | 1 | -3/+6 | |
strlen(), substr() are not byte-safe when mbstring.func_overload is enabled | |||||
2014-07-07 | Add a backport (compat) for quoted_printable_encode() | Andrey Andreev | 1 | -2/+90 | |
2014-07-07 | Fix a few typos and add a backport (compat) for hex2bin() | Andrey Andreev | 1 | -2/+49 | |
2014-06-21 | Fix a _potential_ flaw in password_hash() | Andrey Andreev | 1 | -1/+4 | |
2014-05-09 | Add hash_equals() to ext/hash compat layer | Andrey Andreev | 1 | -0/+46 | |
Introduced in PHP 5.6 Beta 1 (unfortunately, still undocumented). RFC: https://wiki.php.net/rfc/timing_attack (Yes, I am aware that the RFC talks about hash_compare(), the function was later renamed in the implementation.) | |||||
2014-04-29 | Small fixes (PR #3022) | Andrey Andreev | 2 | -3/+3 | |
- Fix incorrect variable in mb_strlen() compat - Micro-optimization of array_replace(), array_replace_recursive() compat | |||||
2014-02-19 | Add compatibility layer for array_column(), array_replace(), ↵ | Andrey Andreev | 1 | -0/+246 | |
array_replace_recursive() | |||||
2014-02-18 | Don't load password hashing compat for HHVM | Andrey Andreev | 1 | -1/+1 | |
2014-02-18 | Add an ext/hash compatibility layer (just hash_pbkdf2(), for now) | Andrey Andreev | 1 | -0/+144 | |
2014-02-13 | [ci skip] Add index.html to system/core/compat/ | Andrey Andreev | 1 | -0/+10 | |
2014-02-13 | Introducing compatibility layers | Andrey Andreev | 2 | -0/+357 | |
- Limited support for mbstring (mb_strlen(), mb_strpos(), mb_substr() only) via iconv. Falls back to regular strlen(), strpos(), substr() if iconv is not available. - Password hashing, dependant on CRYPT_BLOWFISH (2y version, available since PHP 5.3.7) availability. |