Tutorial by Examples

First you add System.Security.Cryptography and System.IO to your project public string GetSha1Hash(string filePath) { using (FileStream fs = File.OpenRead(filePath)) { SHA1 sha = new SHA1Managed(); return BitConverter.ToString(sha.ComputeHash(fs...

Page 1 of 1