aaronbeebe.com
Beebe's Stuff: Create a SHA1 hash of a string
http://www.aaronbeebe.com/2010/12/create-sha1-hash-of-string.html
Random Stuff, Thoughts, Links (sometimes), rants. Basically whatever I feel like today. Wednesday, December 29, 2010. Create a SHA1 hash of a string. 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");. Subscribe to: Post Comments (Atom).
ericnapier.com
My MD5 Hash Generator
http://www.ericnapier.com/my-md5-hash-generator
My MD5 Hash Generator. June 20, 2010. I recently finished my latest web project. It’s an MD5 hash generator. It’s nothing fancy – just a quick and dirty MD5. But if you need something one way hashed, it will do the trick for you. I need to build some links so it will rank on GOOG. I also need to add some ads so it will make me some $ . Comment… read it below or add one. June 25, 2010 at 8:36 pm. I will be sure to run all my passwords through your service from now on, sir. Thanks you kindly.