.NET Framework
Arbeta med SHA1 i C #
Sök…
Introduktion
i det här projektet ser du hur du arbetar med SHA1 kryptografisk hash-funktion. till exempel få hash från strängen och hur man knäcker SHA1-hash.
källa compelete på github: https://github.com/mahdiabasi/SHA1Tool
#Generera SHA1-kontrollsumma för en fil
först lägger du till System.Security.Cryptography namnutrymme till ditt projekt
public string GetSha1Hash(string filePath)
{
using (FileStream fs = File.OpenRead(filePath))
{
SHA1 sha = new SHA1Managed();
return BitConverter.ToString(sha.ComputeHash(fs));
}
}
#Generera hash av en text
public static string TextToHash(string text)
{
var sh = SHA1.Create();
var hash = new StringBuilder();
byte[] bytes = Encoding.UTF8.GetBytes(text);
byte[] b = sh.ComputeHash(bytes);
foreach (byte a in b)
{
var h = a.ToString("x2");
hash.Append(h);
}
return hash.ToString();
}
Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow