Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using (FileStream fs = new FileStream(@"C:\file\location", FileMode.Open))
- {
- using (SHA1Managed sha1 = new SHA1Managed())
- {
- string hash = BitConverter.ToString(sha1.ComputeHash(fs));
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment