Files
spa-api/laravel/hash.php

53 lines
1.2 KiB
PHP
Raw Normal View History

<?php namespace Laravel;
2011-10-08 22:41:52 -05:00
class Hash {
2011-10-08 22:41:52 -05:00
/**
* Hash a password using the Bcrypt hashing scheme.
*
* <code>
* // Create a Bcrypt hash of a value
* $hash = Hash::make('secret');
2011-10-08 22:41:52 -05:00
*
* // Use a specified number of iterations when creating the hash
* $hash = Hash::make('secret', 12);
2011-10-08 22:41:52 -05:00
* </code>
*
* @param string $value
* @param int $rounds
* @return string
*/
public static function make($value, $rounds = 8)
2011-10-08 22:41:52 -05:00
{
2012-01-16 13:59:24 -06:00
$work = str_pad($rounds, 2, '0', STR_PAD_LEFT);
2012-01-17 14:23:11 -06:00
// Bcrypt expects the salt to be 22 base64 encoded characters including
// dots and slashes. We will get rid of the plus signs included in the
2012-02-23 14:02:59 -06:00
// base64 data and replace them with dots.
2012-01-17 14:23:11 -06:00
if (function_exists('openssl_random_pseudo_bytes'))
{
$salt = openssl_random_pseudo_bytes(16);
}
else
{
$salt = Str::random(40);
}
$salt = substr(strtr(base64_encode($salt), '+', '.'), 0 , 22);
return crypt($value, '$2a$'.$work.'$'.$salt);
2011-10-08 22:41:52 -05:00
}
2012-02-16 15:12:42 -06:00
/**
* Determine if an unhashed value matches a Bcrypt hash.
*
* @param string $value
* @param string $hash
* @return bool
*/
public static function check($value, $hash)
{
return crypt($value, $hash) === $hash;
}
2011-10-08 22:41:52 -05:00
}