mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2025-01-19 06:57:24 +08:00
17 lines
333 B
PHP
Executable File
17 lines
333 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Services\Cipher;
|
|
|
|
class PHP_PASSWORD_HASH extends BaseCipher
|
|
{
|
|
public function hash($value, $salt = ''): string
|
|
{
|
|
return password_hash($value, PASSWORD_DEFAULT);
|
|
}
|
|
|
|
public function verify($password, $hash, $salt = ''): bool
|
|
{
|
|
return password_verify($password, $hash);
|
|
}
|
|
}
|