Recherche…


Introduction

Dans ce projet, vous voyez comment travailler avec la fonction de hachage cryptographique SHA1. par exemple obtenir le hachage de la chaîne et comment craquer le hachage SHA1. source sur hub git: https://github.com/mahdiabasi/SHA1Tool

# Générer la somme de contrôle SHA1 d'une fonction de fichier

D'abord, vous ajoutez System.Security.Cryptography et System.IO à votre projet.

 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
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow