blessing-skin-server/app/Services/Cipher/MD5.php
2020-06-02 15:46:04 +08:00

12 lines
165 B
PHP

<?php
namespace App\Services\Cipher;
class MD5 extends BaseCipher
{
public function hash($value, $salt = ''): string
{
return md5($value);
}
}