We made another fast trip to Kansas City this winter, at the end of January. This was one of the last times that we would be able to fly and have Raelynn ride on our laps. After this spring she will be 2 and that is the cutoff for "infant" though we got some funny looks when we told the flight attendants that she was only 1 and a half. Oh well. The trip went well, we got to see lots of friends and family while we were there.
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