Zoeken…


Invoering

in dit project zie je hoe je werkt met de SHA1 cryptografische hashfunctie. haal bijvoorbeeld hash van string en hoe SHA1 hash te kraken.

bron compelete op github: https://github.com/mahdiabasi/SHA1Tool

#Gegenereer SHA1-controlesom van een bestand

eerst voegt u de naamruimte System.Security.Cryptography toe aan uw project

public string GetSha1Hash(string filePath)
    {
        using (FileStream fs = File.OpenRead(filePath))
        {
            SHA1 sha = new SHA1Managed();
            return BitConverter.ToString(sha.ComputeHash(fs));
        }
    }

#Gegenereerde hash van een tekst

  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
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow