mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2025-03-07 15:16:40 +08:00
15 lines
211 B
PHP
15 lines
211 B
PHP
<?php
|
|
|
|
namespace App\Services\Cipher;
|
|
|
|
class SHA256 extends BaseCipher
|
|
{
|
|
/**
|
|
* Once SHA256 hash
|
|
*/
|
|
public function hash($value, $salt = "")
|
|
{
|
|
return hash('sha256', $value);
|
|
}
|
|
}
|