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

12 lines
179 B
PHP
Raw Normal View History

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