Created
January 5, 2015 10:53
-
-
Save Phocacius/2a58319d2032ae862a48 to your computer and use it in GitHub Desktop.
A tiny helper C# class that converts an arbitrary string to an hex encoded SHA1 hash.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Security.Cryptography; | |
namespace MyNamespace | |
{ | |
public class Sha1Hasher | |
{ | |
public static string sha1Hash (string plaintext) | |
{ | |
SHA1 sh1 = SHA1.Create (); | |
String hash = "mySaltHere" + plaintext; | |
System.Text.UTF8Encoding encoding = new System.Text.UTF8Encoding(); | |
byte[] bytes = encoding.GetBytes (hash); | |
String hashed = byteArrayToHexString (sh1.ComputeHash (bytes)); | |
return hashed; | |
} | |
public static string byteArrayToHexString (byte[] b) | |
{ | |
string result = ""; | |
for (int i = 0; i < b.Length; i++) { | |
result += | |
((b [i] & 0xff) + 0x100).ToString ("x").Substring (1); | |
} | |
return result; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment