13
votes
4answers
375 views
Reproducable MD5/SHA1 on a rebuild of C# .exe
Hi, I'll give you a little bit of background first as to why I'm asking this question:
I am currently working in a stricly-regulated industry and as such our code is quite careful …
9
votes
7answers
510 views
What is the fastest way to create a checksum for large files in C#
Hi,
I have to sync large files across some machines. The files can be up to 6GB in size. The sync will be done manually every few weeks. I cant take the filename into consideration …
9
votes
5answers
544 views
Why modulo 65521 in Adler-32 checksum algorithm?
The Adler-32 checksum algorithm does sums modulo 65521. I know that 65521 is the largest prime number that fits in 16 bits, but why is it important to use a prime number in this a …
7
votes
9answers
2k views
How to generate a verification code/number ?
Hi,
I'm working on an application where users have to make a call and type a verification number with the keypad of their phone.
I would like to be able to detect if the number th …
7
votes
7answers
281 views
why are downloads sometimes tagged md5, sha1 and other hash indicators?
I've seen this all over the place:
Download here! SHA1 =
8e1ed2ce9e7e473d38a9dc7824a384a9ac34d7d0
what does it mean? how does a hash come into play as far as downloads an …
6
votes
7answers
703 views
Hash Code and Checksum - what’s the difference?
My understanding is that a hash code and checksum are similar things - a numeric value, computed for a block of data, that is relatively unique.
i.e. The probability of two blocks …
5
votes
6answers
900 views
C# - How to compare 2 files fast?
Typical approaches recommend reading the binary via FileStream and comparing it byte-by-byte.
Would a checksum comparison such as CRC be faster?
Are there any .NET libraries that …
5
votes
12answers
292 views
Best way to generate order numbers for an online store?
Every order in my online store has a user-facing order number. I'm wondering the best way to generate them. Criteria include:
Short
Easy to say over the phone (e.g., "m" and "n" …
5
votes
4answers
2k views
How could I guess a checksum algorithm?
Let's assume that I have some packets with a 16-bit checksum at the end. I would like to guess which checksum algorithm is used.
For a start, from dump data I can see that one byt …
4
votes
2answers
155 views
What should I use as a check digit algorithm for a base 31 value?
I'm using the following set of values to create a 9 character long base 31 value:
0123456789ABCDEFGHJKLMNPQRTUWXY
I was looking at modifying the Luhn algorithm to work with my bas …
4
votes
6answers
552 views
Good choice for a lightweight checksum algorithm?
Hi all,
I find myself needing to generate a checksum for a string of data, for consistency purposes. The broad idea is that the client can regenerate the checksum based on the pa …
4
votes
2answers
614 views
Determining CRC algorithm from data + CRC - embedded application.
Hello,
I have a set of data protected by 16bit checksums that I need to correct. The checksum locations are known, the exact areas they are calculated on and the exact algorithm …
4
votes
7answers
340 views
CRC checks for files
I'm working with a small FAT16 filesystem, and I want to generate CRC values for indidual XML files which store configuration information. In case the data changes or is corrupted, …
4
votes
9answers
1k views
Robust and fast checksum algorithm?
Which checksum algorithm can you recommend in this use case:
I want to generate checksums of small JPEG files (~8kb each) to check if the content changed. Using the filesystem's d …
3
votes
1answer
103 views
Calculate Hash or Checksum for a table in SQL Server
I'm trying to compute a checksum or a hash for an entire table in SQL Server 2008. The problem I'm running into is that the table contains an XML column datatype, which cannot be u …
