blessing-skin-server/app/Services/Cipher/MD5.php

15 lines
194 B
PHP
Raw Normal View History

2016-07-21 22:01:57 +08:00
<?php
namespace App\Services\Cipher;
class MD5 extends BaseCipher
2016-07-21 22:01:57 +08:00
{
/**
2017-01-08 10:48:46 +08:00
* Once MD5 hash
2016-07-21 22:01:57 +08:00
*/
public function hash($value, $salt = "")
2017-01-08 10:48:46 +08:00
{
return md5($value);
2016-07-21 22:01:57 +08:00
}
}