diff options
author | Anthony Ferrara <ircmaxell@ircmaxell.com> | 2012-07-03 08:24:31 -0400 |
---|---|---|
committer | Anthony Ferrara <ircmaxell@ircmaxell.com> | 2012-07-03 08:24:31 -0400 |
commit | 6943f2ab7f729d26281f9358dba27890d07dd24d (patch) | |
tree | c776ab4eebd2a6c89c5040b6044fda2b412bbc7d /ext/standard/php_password.h | |
parent | 6cc3c65fbf06da075934c89e470fa776d4d968fa (diff) | |
download | php-git-6943f2ab7f729d26281f9358dba27890d07dd24d.tar.gz |
Some more refactoring, make algo no longer optional
Diffstat (limited to 'ext/standard/php_password.h')
-rw-r--r-- | ext/standard/php_password.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/php_password.h b/ext/standard/php_password.h index 338665ea2f..57c6b88785 100644 --- a/ext/standard/php_password.h +++ b/ext/standard/php_password.h @@ -27,8 +27,8 @@ PHP_FUNCTION(password_make_salt); PHP_MINIT_FUNCTION(password); -#define PHP_PASSWORD_DEFAULT "2y" -#define PHP_PASSWORD_BCRYPT "2y" +#define PHP_PASSWORD_DEFAULT 1 +#define PHP_PASSWORD_BCRYPT 1 #define PHP_PASSWORD_BCRYPT_COST 10 |