#
e93f089d |
| 16-Jul-2017 |
Sara Golemon |
Refactor password_hash() Pull salt generation out to a helper. Merge options/hash into single switch. Restore php_error->php_error_docref from last diff. (Error messages matter) |
#
7165e287 |
| 15-Jul-2017 |
Sara Golemon |
Refactor password.c Use zend_string instread of char*/size_t Clean up use of scope vars Get rid of some temporaries/overstacked expressions. |
Revision tags: php-5.6.31, php-7.0.21, php-7.1.7, php-7.2.0alpha3, php-7.1.7RC1, php-7.0.21RC1, php-7.2.0alpha2 |
|
#
498716c2 |
| 18-Jun-2017 |
Charles R. Portwood II |
Compatibility with libargon2 versions 20161029 and 20160821 libargon2 20161029 introduces the `type` parameter to the argon2_encodedlen function that is not present in 20160821. This cha
Compatibility with libargon2 versions 20161029 and 20160821 libargon2 20161029 introduces the `type` parameter to the argon2_encodedlen function that is not present in 20160821. This change ensures the Argon2 functionality introduced in RFC `argon2_password_hash` is compatible with both versions, as the library version that package maintainers package may differ.
show more ...
|
Revision tags: php-7.1.6, php-7.2.0alpha1, php-7.0.20, php-7.1.6RC1, php-7.0.20RC1, php-7.1.5, php-7.0.19, php-7.0.19RC1, php-7.1.5RC1, php-7.1.4, php-7.0.18 |
|
#
696bd37e |
| 10-Apr-2017 |
Xinchen Hui |
Merge branch 'PHP-7.1' * PHP-7.1: Fixed condition check Fixed condition check another place Conflicts: ext/mcrypt/mcrypt.c
|
#
65d77812 |
| 10-Apr-2017 |
Xinchen Hui |
Merge branch 'PHP-7.0' into PHP-7.1 * PHP-7.0: Fixed condition check
|
#
4bebcb84 |
| 10-Apr-2017 |
Xinchen Hui |
Fixed condition check |
Revision tags: php-7.1.4RC1, php-7.0.18RC1, php-7.1.3, php-7.0.17, php-7.1.3RC1, php-7.0.17RC1, php-7.1.2, php-7.0.16, php-7.0.16RC1, php-7.1.2RC1, php-5.6.30, php-7.0.15, php-5.6.30RC1, php-7.1.1RC1, php-7.0.15RC1 |
|
#
dac6c639 |
| 04-Jan-2017 |
Sammy Kaye Powers |
Update copyright headers to 2017 |
#
478f119a |
| 04-Jan-2017 |
Sammy Kaye Powers |
Update copyright headers to 2017 |
#
9e29f841 |
| 02-Jan-2017 |
Sammy Kaye Powers |
Update copyright headers to 2017 |
#
a23f08a3 |
| 31-Dec-2016 |
Sara Golemon |
Use new param API in standard |
Revision tags: php-7.1.1, php-5.6.29, php-7.0.14, php-7.1.0, php-5.6.29RC1, php-7.0.14RC1, php-7.1.0RC6, php-5.6.28, php-7.0.13, php-5.6.28RC1, php-7.1.0RC5, php-7.0.13RC1, php-7.1.0RC4, php-5.6.27, php-7.0.12, php-7.1.0RC3, php-5.6.27RC1, php-7.0.12RC1 |
|
#
1a94b24c |
| 16-Sep-2016 |
Nikita Popov |
Use zend_string_free instead of efree Fingers crossed I didn't break the build. |
Revision tags: php-5.6.26, php-7.1.0RC2, php-7.0.11, php-5.6.26RC1, php-7.1.0RC1, php-7.0.11RC1, php-7.1.0beta3, php-5.6.25, php-7.0.10, php-7.1.0beta2 |
|
#
0e3b3b03 |
| 05-Aug-2016 |
Charles R. Portwood II |
Changing m_cost and t_cost to memory_cost and time_cost - Updating tests - Adjusting cost factors: - memory_cost = 1 MiB - time_cost = 2 - threads = 2 |
Revision tags: php-5.6.25RC1, php-7.0.10RC1 |
|
#
0d4d8eab |
| 01-Aug-2016 |
Charles R. Portwood II |
Removing Argon2d, changing config arg to --with-password-argon2 Argon2d is not suitable for password_hashing. To ensure best practices within password_*, Argon2d was removed. --
Removing Argon2d, changing config arg to --with-password-argon2 Argon2d is not suitable for password_hashing. To ensure best practices within password_*, Argon2d was removed. --with-argon2 implies the full feature set of Argon2, whereas this feature only implements Argon2i within password_*. Consequently the feature flag was renamed to --with-password-argon2
show more ...
|
Revision tags: php-7.1.0beta1, php-5.6.24, php-7.0.9, php-5.5.38 |
|
#
ab837a6a |
| 18-Jul-2016 |
Charles R. Portwood II |
Fixing potential memory leak with encoded in password_hash Using zend_string_alloc instead of char* for out and encoded variables |
#
bcfccdd9 |
| 11-Jul-2016 |
Charles R. Portwood II |
Removing argon2 library files in favor of --with-argon2[=DIR] - Configure flag now accepts --with-argon2 for dynamic linking with libargon2. Argon2 will be enabled in password_* only i
Removing argon2 library files in favor of --with-argon2[=DIR] - Configure flag now accepts --with-argon2 for dynamic linking with libargon2. Argon2 will be enabled in password_* only if this flag is passed. - --with-argon2 config flag allows user passed directory for linking - Added Argon2 specific tests to ensure existing tests do not fail when argon2 is disable
show more ...
|
#
1bc38184 |
| 10-Jul-2016 |
Charles R. Portwood II |
Reverting PASSWORD_DEFAULT to PASSWORD_BCRYPT Indicating constants as defaults Minor coding standards change |
#
0a1274f2 |
| 09-Jul-2016 |
Charles R. Portwood II |
Adding test cases for Argon2i and Argon2d Added Windows config.w32 changes Updated constants in php_password.h |
#
c2551a74 |
| 09-Jul-2016 |
Charles R. Portwood II |
Working implementation with password_hash, password_verify |
#
3c7fb71a |
| 08-Jul-2016 |
Charles R. Portwood II |
Introducing Argon2 memory, time, and lanes constants PASSWORD_ARGON2_MEMORY_COST PASSWORD_ARGON2_TIME_COST PASSWORD_ARGON2_LANES |
#
de85c2e5 |
| 08-Jul-2016 |
Charles R. Portwood II |
Implementing password_verify and password_get_info for Argon2 |
Revision tags: php-5.6.24RC1, php-7.1.0alpha3, php-7.0.9RC1 |
|
#
adc95c51 |
| 23-Jun-2016 |
Dmitry Stogov |
Fixed compilation warnings |
Revision tags: php-7.1.0alpha2, php-7.0.8, php-5.6.23, php-5.5.37, php-5.6.23RC1, php-7.0.8RC1, php-7.1.0alpha1, php-5.6.22, php-5.5.36, php-7.0.7, php-5.6.22RC1, php-7.0.7RC1, php-7.0.6, php-5.6.21, php-5.5.35, php-5.6.21RC1, php-7.0.6RC1, php-5.6.20, php-5.5.34, php-7.0.5 |
|
#
d3ed75b9 |
| 25-Mar-2016 |
Nikita Popov |
Remove HAVE_CRYPT checks We always provide a crypt implementation. HAVE_CRYPT is only relevant as to whether the crypt() C function exists. |
Revision tags: php-5.6.20RC1, php-7.0.5RC1, php-5.6.19, php-5.5.33, php-7.0.4, php-5.6.19RC1, php-7.0.4RC1, php-5.6.18, php-7.0.3, php-5.5.32, php-5.6.18RC1, php-7.0.3RC1, php-5.6.17, php-5.5.31, php-7.0.2 |
|
#
ef4dc158 |
| 04-Jan-2016 |
Julien Pauli |
Moved buffer from heap to stack |
#
ed35de78 |
| 01-Jan-2016 |
Lior Kaplan |
Merge branch 'PHP-5.6' into PHP-7.0 * PHP-5.6: Happy new year (Update copyright to 2016)
|
#
49493a2d |
| 01-Jan-2016 |
Lior Kaplan |
Happy new year (Update copyright to 2016) |