Sign in
Kannan
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
RSS for posts
Atom
RSS for comments
OK
Search
Tags
FAQ
India
PowerToys
Team Foundation Server
UI
Archive
Archives
November 2007
(1)
June 2007
(1)
April 2007
(3)
December 2006
(1)
August 2006
(1)
May 2006
(2)
February 2006
(1)
January 2006
(4)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Kannan
FAQ Item 1: How to generate Md5 hash string for a file.
Posted
over 7 years ago
by
MSDNArchive
0
Comments
using System.Security.Cryptography; .... FileStream file = new FileStream (fileName, FileMode .Open); MD5 md5 = new MD5CryptoServiceProvider (); byte [] result = md5.ComputeHash(file); file.Close(); string md5Hash = Convert .ToBase64String...
Page 1 of 1 (1 items)