mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-27 06:29:19 +08:00
15 lines
211 B
PHP
15 lines
211 B
PHP
<?php
|
|
|
|
namespace App\Services\Cipher;
|
|
|
|
class SHA512 extends BaseCipher
|
|
{
|
|
/**
|
|
* Once SHA512 hash
|
|
*/
|
|
public function hash($value, $salt = "")
|
|
{
|
|
return hash('sha512', $value);
|
|
}
|
|
}
|