vote up 4 vote down star
2

I'm new to C#

  1. How do i hash files with C#
  2. What is available ? (md5, crc, sha1, etc)
  3. Is there an interface i should inherit?

Basically i want to checksum multiple files and store it in a db along with using two of my own checksums/hashes.

flag

40% accept rate

5 Answers

vote up 1 vote down

The Cryptography namespace has all the clases you need for that. It covers MD5 and various SHA implementations.

link|flag
vote up 11 vote down

1.) How do i hash files with C#?

You can utilize .NET classes under System.Security.Cryptography

2.) What is available?

3.) Is there an interface i should inherit?

No you don't have to. Take a look at HashAlgorithm.Create(...)

link|flag
vote up 3 vote down

Snippet

byte[] result; 
SHA1 sha = new SHA1CryptoServiceProvider(); 
using(FileStream fs = File.OpenRead(@"file.txt"))
{
   result = sha.ComputeHash(fs);
}

See also SHA1CryptoServiceProvider or MD5CryptoServiceProvider.

CRC is not available -- it's more efficient to create your own.

link|flag
vote up 1 vote down

What are you trying to achieve with the hashes? If you're trying to actually guarantee that nobody maliciously altered the files, please don't implement your own checksum or hash. You'll probably make some mistake and someone will be able to tamper with a file and have the checksums still match. Use a good hash function like SHA-256.

link|flag
vote up 1 vote down

Jeff Atwood (yep that one) has a CodeProject project that wraps and simplifies use of the Cryptography classes. It's written in VB.NET but didn't take long to convert to C#.

link|flag
oops, spelt Jeff's surname wrongly! – Mitch Wheat Mar 8 at 10:16
Wow, I never noticed that either. – Sung Meister Mar 9 at 17:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.