| Package Data | |
|---|---|
| Maintainer Username: | vjroby | 
| Maintainer Contact: | eu@robertgabriel.ro (Robert Gabriel Dinu) | 
| Package Create Date: | 2014-12-29 | 
| Package Last Update: | 2015-04-13 | 
| Language: | PHP | 
| License: | MIT | 
| Last Refreshed: | 2025-10-27 03:19:33 | 
| Package Statistics | |
|---|---|
| Total Downloads: | 50,043 | 
| Monthly Downloads: | 0 | 
| Daily Downloads: | 0 | 
| Total Stars: | 2 | 
| Total Watchers: | 1 | 
| Total Forks: | 0 | 
| Total Open Issues: | 0 | 
#PBKDF2 package for Laravel 4#
##Installing instructions##
Install using composer:
"vjroby/laravel-pbkdf2": "0.2.0"
Put a new service provider:
'Vjroby\LaravelPbkdf2\LaravelPbkdf2ServiceProvider'
and the alias
'Pbkdf2'		=> 'Vjroby\LaravelPbkdf2\Facades\Pbkdf2Facade'
in the app.php.
There are 3 methods that can be used:
Pbkdf2::safeEquals($string1, $string2)
Pbkdf2::createSalt()
Pbkdf2::createHash('password',$salt)
For changing the configuration:
php artisan config:publish vjroby/laravel-pbkdf2