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 op git hub: https://github.com/mahdiabasi/SHA1Tool

#Genereer SHA1-controlesom van een bestandsfunctie

Eerst voegt u System.Security.Cryptography en System.IO 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));
        }
    }


Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow