The question is pretty much self-explanatory. I Googled many sites, many methods, tried many encodings, but I can\'t get it to match.
I\'m trying to make the string
Try this
using System.Security.Cryptography public static string HashPassword(string unhashedPassword) { return BitConverter.ToString(new SHA512CryptoServiceProvider().ComputeHash(Encoding.Default.GetBytes(unhashedPassword))).Replace("-", String.Empty).ToUpper(); }