summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter/core/compat/password_test.php
AgeCommit message (Collapse)AuthorFilesLines
2017-12-20Merge pull request #5354 from carusogabriel/refactoring-testsAndrey Andreev1-1/+1
Refactoring tests Conflicts resolved: tests/codeigniter/core/Utf8_test.php tests/codeigniter/database/query_builder/group_test.php tests/codeigniter/libraries/Form_validation_test.php
2016-07-28Remove dead code written for PHP 5.2Andrey Andreev1-5/+0
2015-02-15[ci skip] Fix a PHP7 BC break in a test that wouldn't even runAndrey Andreev1-1/+1
2014-02-18Don't load password hashing compat for HHVMAndrey Andreev1-0/+6
2014-02-13Introducing compatibility layersAndrey Andreev1-0/+158
- 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.