vjroby / laravel-pbkdf2 by vjroby

This is a package for wrapping PBKDF2 class and using it in Laravel as a facade
49,990
2
2
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: 2024-04-19 03:00:05
Package Statistics
Total Downloads: 49,990
Monthly Downloads: 1
Daily Downloads: 0
Total Stars: 2
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

Build Status #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