Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

26
votes
7answers
6k views

What is the fastest way to create a checksum for large files in C#

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 because they can ...
22
votes
11answers
17k views

How to compare 2 files fast using .NET?

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 can generate a ...
14
votes
5answers
977 views

Reproducable MD5/SHA1 on a rebuild of C# .exe

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 carefully looked-over by ...
14
votes
7answers
3k 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 of data yielding ...
12
votes
2answers
4k views

How do I do a SHA1 File Checksum in C#?

How do I use the SHA1CryptoServiceProvider() on a file to create a SHA1 Checksum of the file?
12
votes
7answers
8k views

Encrypting SQLite Database file in iPhone OS

Any SQLite database on the iPhone is simply a file bundled with the application. It is relatively simple for anyone to extract this file and query it. What are your suggestions for encrypting either ...
11
votes
4answers
510 views

Creating a checksum on an object graph

This question is related to this one but I think should be asked separately. I have a complex graph of object instances. Now I would like to create a checksum on this object graph directly in memory ...
11
votes
3answers
917 views

What hash algorithms are parallelizable? Optimizing the hashing of large files utilizing on multi-core CPUs

I'm interested in optimizing the hashing of some large files (optimizing wall clock time). The I/O has been optimized well enough already and the I/O device (local SSD) is only tapped at about 25% of ...
10
votes
7answers
619 views

Determine whether .NET assemblies were built from the same source

Does anyone know of a way to compare two .NET assemblies to determine whether they were built from the "same" source files? I am aware that there are some differencing utilities available, such as ...
10
votes
6answers
2k views

How is a CRC32 checksum calculated?

Maybe I'm just not seeing it, but CRC32 seems either needlessly complicated, or insufficiently explained anywhere I could find on the web. I understand the gist of it is that it is the remainder from ...
9
votes
1answer
236 views

Python equivalent of unix cksum function

I've been looking for the equivalent python method for the unix cksum command: http://pubs.opengroup.org/onlinepubs/7990989775/xcu/cksum.html $ cksum ./temp.bin 1605138151 712368 ./temp.bin So far ...
9
votes
4answers
951 views

Is it possible to get identical SHA1 hash?

Given two different strings S1 and S2 (S1 != S2) is it possible that: SHA1(S1) == SHA1(S2) is True? If yes - with what probability? If not - why not? Is there a upper bound on the length of a ...
9
votes
3answers
539 views

Incremental Checksums

I am looking for a checksum algorithm where for a large block of data the checksum is equal to the sum of checksums from all the smaller component blocks. Most of what I have found is from RFCs ...
9
votes
6answers
2k 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 algorithm? (I'm sure ...
9
votes
7answers
1k views

Ideas to create a small (<10 digits), not (very) secure “hash”

I'm working on an online event ticketing system, where users will be able to self print his tickets and show up at the event where it will be scanned (barcode) and ideally the person will get in. My ...
9
votes
9answers
5k views

How to generate a verification code/number?

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 they type is correct or ...
8
votes
1answer
376 views

Finding which Checksum is used

Together with some other people we are trying to make a Savegameeditor for a game, but we came accross some problems. The savegame files contain a kind of checksum,of which we can't seem to find which ...
8
votes
5answers
970 views

Combining MD5 hash values

When calculating a single MD5 checksum on a large file, what technique is generally used to combine the various MD5 values into a single value? Do you just add them together? I'm not really ...
7
votes
10answers
1k views

File containing its own checksum

Is it possible to create a file that will contain its own checksum (MD5, SHA1, whatever)? And to upset jokers I mean checksum in plain, not function calculating it.
7
votes
7answers
877 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, I want to be able ...
7
votes
3answers
4k 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 byte change in the ...
7
votes
10answers
5k views

Robust and fast checksum algorithm?

Which checksum algorithm can you recommend in the following use case? I want to generate checksums of small JPEG files (~8 kB each) to check if the content changed. Using the filesystem's date ...
6
votes
4answers
146 views

Python, checksum of a dict

I'm thinking to create a checksum of a dict to know if it was modified or not For the moment i have that: >>> import hashlib >>> import pickle >>> d = {'k': 'v', 'k2': ...
6
votes
4answers
191 views

java: need to increase performance of checksum calculation

I'm using the following function to calculate checksums on files: public static void generateChecksums(String strInputFile, String strCSVFile) { ArrayList<String[]> outputList = new ...
6
votes
3answers
236 views

Making the best of a bad “checksum” algorithm

I'm working on an existing driver that controls an 8-bit MCU over a serial port. There are many different flavors of firmware for the MCU but they all share a common method of trying to ensure link ...
6
votes
3answers
1k views

How to calculate the internet checksum from a byte[] in Java

I'm trying to figure out how to calculate the Internet Checksum in Java and its causing me no end of pain. (I'm horrible at bit manipulation.) I found a version in C# Calculate an Internet (aka IP, ...
6
votes
2answers
3k views

Python: Generating a MD5 checksum of a file?

Is there any simple way of generating (and checking) MD5 checksums of a list of files in Python? (I have a small program I'm working on, and I'd like to confirm the checksums of the files).
6
votes
6answers
303 views

construct a unique number for a string in java

We have a requirement of reading/writing more than 10 million strings into a file. Also we do not want duplicates in the file. Since the strings would be flushed to a file as soon as they are read we ...
6
votes
2answers
8k views

UDP checksum calculation

The UDP header struct defined at /usr/include/netinet/udp.h is as follows struct udphdr { u_int16_t source; u_int16_t dest; u_int16_t len; u_int16_t check; }; What value is stored in the ...
6
votes
7answers
389 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 and... what use can I ...
5
votes
2answers
130 views

MySQL - Fastest way to check if data in InnoDB table has changed

My application is very database intensive. Currently, I'm running MySQL 5.5.19 and using MyISAM, but I'm in the process of migrating to InnoDB. The only problem left is checksum performance. My ...
5
votes
3answers
154 views

Can you explain theese disturbing anomalies of md5 and modulo?

Okay, the title is really very subjective. But thats just what the problem is to me. The background is that I want to distribute hits of static web contents evenly about a defined number of caching ...
5
votes
4answers
297 views

Determining whether a file is a duplicate

Is there a reliable way to determine whether or not two files are the same? For example, two files with the same size and type may or may not be the same binarilly (yeah, I know it's not really a ...
5
votes
2answers
192 views

How can i create a stable checksum of a media file?

how can i create a checksum of only the media data without the metadata to get a stable identification for a media file. preferably an cross platform approach with a library that has support for many ...
5
votes
1answer
3k 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 used by checksum and ...
5
votes
12answers
2k 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" are ambiguous) ...
5
votes
4answers
1k views

What algorithm to use to calculate a check digit?

What algorithm to use to calculate a check digit for a list of digits? The length of the list is between 8 and 12 digits. see also: How to generate a verification code/number?
5
votes
6answers
4k views

Good choice for a lightweight checksum algorithm?

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 payload it recieves and thus ...
4
votes
3answers
58 views

Are cryptographic hashes injective under certain conditions?

sorry for the lengthy post, I have a question about common crpytographic hashing algorithms, such as the SHA family, MD5, etc. In general, such a hash algorithm cannot be injective, since the actual ...
4
votes
2answers
196 views

Error detection and error correction algorithm

Suppose we have a chunk of data that came from data transfer medium with the following properties: Total chunk size is 8 bytes. The data transfer is unreliable, so errors in a number of bits are ...
4
votes
2answers
133 views

How does git compute file hashes?

The SHA1 hashes stored in the tree objects (as returned by git ls-tree) do not match the SHA1 hashes of the file content (as returned by sha1sum) $ git cat-file blob ...
4
votes
1answer
417 views

C - TCP Checksum (using raw sockets) — how to source IP address

When using raw sockets to send TCP data, it is allowed to leave the source ip address zero, so that the kernel puts in the correct value. This is helpful, especially when several interfaces (with ...
4
votes
4answers
275 views

How fast is the code

I'm developing game. I store my game-objects in this map: std::map<std::string, Object*> mObjects; std::string is a key/name of object to find further in code. It's very easy to point some ...
4
votes
5answers
126 views

Transfer files using checksums only?

Would it be possible to transfer large files using only a system of checksums, and then reconstruct the original file by calculations? Say that you transfer the MD5 checksum of a file and the size of ...
4
votes
8answers
842 views

How to generate a checksum for an java object

I'm looking for an solution to generate a checksum for any type of Java object, which remains the same for every exection of an application which produces the same object. I tried it with ...
4
votes
2answers
472 views

ASP.Net File Upload with CRC check

Is there a file upload control for ASP.Net which performs a client-side checksum calculation (CRC, MD5, etc) on the file contents and transmits the checksum to allow for server-side checksum ...
4
votes
4answers
303 views

Tips on building a byte protocol

I'm communicating data between devices, and I have to program the protocol as an array of bytes. Any tips when building protocols at a low-level? .. Eg: Use a 2 byte header, to send the length of ...
4
votes
2answers
2k views

Generating Luhn Checksums

There are lots of implementations for validating Luhn checksums but very few for generating them. I've come across this one however in my tests it has revealed to be buggy and I don't understand the ...
4
votes
4answers
1k views

Error Detection Effiency (CRC, Checksum, etc)

I have a hypothetical situation of sending data units, each of a thousand bytes. Failure rate is rare but when a error does occur it is less likely to be a single bit error and more likely to be an ...
4
votes
5answers
589 views

How to build twice the same Linux Kernel sources and get the the same checksum

I'm searching if it's possible to build twice the same Linux Kernel (same sources, same environment, same options, same compiler) and get the the same checksum. Anybody knows how to do?

1 2 3 4 5 7