.net
Hash Large Files with .Net SHA1/MD5
Submitted by justin on Tue, 03/09/2010 - 11:16I've been working on an application that checks for duplicate files. One of the better ways to test whether files are identical is to hash them. MD5 hashing is common, but it has been known to cause collisions. I elected to use the SHA1 algorithm instead.
In my testing, I've found that I can has a ~1GB file within about 7 seconds without consuming an equal share of memory.
You will need the following namespaces:
- System.Security.Cryptography
- System.IO
SHA1 Hash Example Code:
Import an Excel Spreadsheet into SQL
Submitted by justin on Mon, 03/02/2009 - 12:10When I started on this task, I thought it would a very simple thing to do. I mean its a similar concept for both; rows and columns. Well I spent two days banging my head on the desk before coming up with a solution.
Class: