Ricerca…


introduzione

in questo progetto vedi come lavorare con la funzione hash crittografica SHA1. per esempio ottieni hash dalla stringa e come decifrare l'hash SHA1.

fonte compelete su github: https://github.com/mahdiabasi/SHA1Tool

#Controllare il checksum SHA1 di un file

per prima cosa aggiungi lo spazio dei nomi System.Security.Cryptography al tuo progetto

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

#Generare hash di un testo

  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
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow