Merge branch 'MDL-48202-M30' of git://github.com/lazydaisy/moodle
[moodle.git] / lib / password_compat / readme_moodle.txt
bloba0e38e388b16627f81f552e1ba6b3a4d801f4f48
1 Description of password_compat import into Moodle:
2 ==================================================
4 Imported from: https://github.com/ircmaxell/password_compat/releases/tag/v1.0.4
5 Copyright: (c) 2012 Anthony Ferrara
6 License: MIT License
8 Files used from the library:
9 * lib/password.php  > lib/password.php
10 * test/Unit/*       > tests/
12 Added:
13 * None.
15 Our changes:
16 * Added the following require_once() to the test files:
17     global $CFG;
18     require_once($CFG->dirroot . '/lib/password_compat/lib/password.php');
20 Library description:
21 ====================
23 Compatibility with the password_* functions being worked on for PHP 5.5.
25 This library requires PHP >= 5.3.7 due to a PHP security issue prior to that
26 version.
28 See the RFC (https://wiki.php.net/rfc/password_hash) for more information.
30 Latest code available from https://github.com/ircmaxell/password_compat/
31 under MIT license.