サーチ…


前書き

このプロジェクトでは、SHA1暗号化ハッシュ関数を使用する方法を見ています。例えば、文字列からハッシュを取得し、SHA1ハッシュを解読する方法です。 git hubのソース: https : //github.com/mahdiabasi/SHA1Tool

#ファイル関数のSHA1チェックサムを生成する

まず、System.Security.CryptographyとSystem.IOをプロジェクトに追加します

 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
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow