.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 på git-hub: https://github.com/mahdiabasi/SHA1Tool
#Generera SHA1-kontrollsumma för en filfunktion
Först lägger du till System.Security.Cryptography och System.IO till ditt projekt
public string GetSha1Hash(string filePath)
{
using (FileStream fs = File.OpenRead(filePath))
{
SHA1 sha = new SHA1Managed();
return BitConverter.ToString(sha.ComputeHash(fs));
}
}
Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow