App\Services\Cipher\MD5::encrypt PHP Method

encrypt() public method

Once MD5 encrypt
public encrypt ( $raw_passwd, $salt = "" )
    public function encrypt($raw_passwd, $salt = "")
    {
        $encrypt = md5($raw_passwd);
        return $encrypt;
    }