sonarrradarrplexorganizrnginxdashboardmuximuxlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboard
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
709 B
34 lines
709 B
<?php
|
|
|
|
namespace Illuminate\Hashing;
|
|
|
|
abstract class AbstractHasher
|
|
{
|
|
/**
|
|
* Get information about the given hashed value.
|
|
*
|
|
* @param string $hashedValue
|
|
* @return array
|
|
*/
|
|
public function info($hashedValue)
|
|
{
|
|
return password_get_info($hashedValue);
|
|
}
|
|
|
|
/**
|
|
* Check the given plain value against a hash.
|
|
*
|
|
* @param string $value
|
|
* @param string $hashedValue
|
|
* @param array $options
|
|
* @return bool
|
|
*/
|
|
public function check($value, $hashedValue, array $options = [])
|
|
{
|
|
if (strlen($hashedValue) === 0) {
|
|
return false;
|
|
}
|
|
|
|
return password_verify($value, $hashedValue);
|
|
}
|
|
}
|
|
|