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

12 lines
165 B
PHP
Raw Permalink Normal View History

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