Buscar..


Introducción

En este proyecto, verá cómo trabajar con la función de hash criptográfico SHA1. por ejemplo, obtener hash de la cadena y cómo romper el hash SHA1.

compelete fuente en github: https://github.com/mahdiabasi/SHA1Tool

#Generar la suma de comprobación SHA1 de un archivo

Primero agregue el espacio de nombres System.Security.Cryptography a su proyecto

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

#Generar hash de un texto

  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
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow