We found a Nintendo Wii, and since we got it we can't put down the controller. This is one of the most fun systems to play in a very long time. Between the Wii and the 360, I am going to have a very hard time deciding which games to buy!
This function will take a string and return the hashed value using System.Security.Cryptography; public static string GetSha1(string value) { var data = Encoding.ASCII.GetBytes(value); var hashData = new SHA1Managed().ComputeHash(data); var hash = string.Empty; foreach (var b in hashData) hash += b.ToString("X2"); return hash; } Thanks to Lars-Erik
Comments