So I have a website for my game
This is an exert of the php that I am using.
$Login = strtolower(trim($Login));
$Pass = strtolower(trim($Pass));
$Repass = strtolower(trim($Repass));
$Salt = $Login.$Pass;
$Salt = md5($Salt);
$Salt = "0x".$Salt;
But now I am faced with an issue that I cant seem to work out. I need to be able to do this encryption through C# WinForms for a client side Launcher(Register, Play Game etc etc)
For the life of me I cant figure out how to make the same binary as it makes in php.
I have tried loads but just cant crack it.
Many thanks if you can help