TDoG-Skin/app/Services/Cipher/BCRYPT.php

17 lines
321 B
PHP
Raw Normal View History

2024-08-17 18:43:48 +08:00
<?php
namespace App\Services\Cipher;
class BCRYPT extends BaseCipher
{
public function hash($value, $salt = ''): string
{
return password_hash($value, PASSWORD_BCRYPT);
}
public function verify($password, $hash, $salt = ''): bool
{
return password_verify($password, $hash);
}
}