mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-21 06:19:38 +08:00
3cf19d8656
This pull request applies code style fixes from an analysis carried out by [StyleCI](https://github.styleci.io). --- For more information, click [here](https://github.styleci.io/analyses/8wKwbZ).
20 lines
378 B
PHP
20 lines
378 B
PHP
<?php
|
|
|
|
namespace App\Services\Cipher;
|
|
|
|
class PHP_PASSWORD_HASH extends BaseCipher
|
|
{
|
|
/**
|
|
* Use password_hash() to create hash.
|
|
*/
|
|
public function hash($value, $salt = '')
|
|
{
|
|
return password_hash($value, PASSWORD_DEFAULT);
|
|
}
|
|
|
|
public function verify($password, $hash, $salt = '')
|
|
{
|
|
return password_verify($password, $hash);
|
|
}
|
|
}
|