Mega Code Archive

 
Categories / C# / Security
 

Get SHA1 for a string

using System; using System.Collections.Generic; using System.Text; using System.IO; using System.Security.Cryptography; namespace PeDALS.Utilities.Hasher {     public static class GenerateHash     {         public static string GetSHA1(string path)         {             byte[] HashValue, MessageBytes = File.ReadAllBytes(path);              SHA1Managed SHhash = new SHA1Managed();             string strHex = "";             HashValue = SHhash.ComputeHash(MessageBytes);             foreach (byte b in HashValue)             {                 strHex += String.Format("{0:x2}", b);             }             return strHex;         }     } }