Hello there,
I have problem when trying get hash string in c#.
I already try research in few website, but most them using file to get hash. Even some there , for string, there bit complex. And other one I found it for window authentication for web like this:
FormsAuthentication.HashPasswordForStoringInConfigFile(tbxPassword.Text.Trim(), "md5")
Actually my purpose using hash string to more secure in redirect page to get filename wish to download from query string after hashing.
How to get hash in string.
Example:
string file = "username";
string hash = ??????(username);
Another question, it possible using another hashing "md5" algorithm.
Please help
regard.