switched to simpler bcrypt implementation from phpass.

This commit is contained in:
Taylor Otwell
2011-09-10 22:18:45 -05:00
parent 096a419017
commit 7f2e1e9ca0
2 changed files with 40 additions and 240 deletions

View File

@@ -81,7 +81,7 @@ return array(
'laravel.hasher' => array('singleton' => true, 'resolver' => function($container)
{
return new Security\Hashing\BCrypt(10, false);
return new Security\Hashing\Bcrypt(8);
}),