active questions tagged checksum - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T06:07:09Z http://stackoverflow.com/feeds/tag/checksum http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1896715/how-do-i-check-if-a-string-is-a-valid-md5-or-sha1-checksum-string 1 How do I check if a string is a valid md5 or sha1 checksum string yossis 2009-12-13T14:45:55Z 2009-12-13T14:55:07Z <p>I don't want to calculate a file's checksum, just to know if a given string is a valid checksum</p> http://stackoverflow.com/questions/1829533/compiling-twice-with-delphi-6-and-getting-the-same-checksum-on-the-binary 3 Compiling Twice with Delphi 6 and getting the same checksum on the binary Mike Davis 2009-12-01T22:55:49Z 2009-12-03T02:35:56Z <p>For the purposes of binary / source code verification, i'd like to be able to make two compiles on the same computer 2 weeks apart and have the binaries be identical and thus pass some checksum test.</p> <p>So far I've found that most likely the timestamp will be written by the compiler into the binary. I can work around this by doing the compare on the dumpbin /rawdata results per this msdn article.</p> <p><a href="http://support.microsoft.com/kb/164151" rel="nofollow">http://support.microsoft.com/kb/164151</a></p> <p>However the dumpbin results still differ in a about a dozen places and the difference still appears to be some kind of timestamp (changing from A1 73 to C4 76) for example.</p> <p>I assume this is the timestamp that the delphi compiler is putting into the code/data sections but i can't find where this is happening or how to turn it off. Fiddling with the various compiler/linker options has not changed this behavior.</p> <p>Any help would be greatly appreciated.</p> http://stackoverflow.com/questions/1834541/crc-4-implementation-in-c 0 CRC-4 implementation in C# Markus Olsson 2009-12-02T17:33:07Z 2009-12-02T18:10:21Z <p>Hi.</p> <p>I've been searching the net for a C# implementation of the 4-bit cyclic redundancy check (CRC-4-ITU) but so far I've been unsuccessful.</p> <p>Is there anyone who's able to give me a reference implementation of CRC-4-ITU? Preferrably with the standard polynomial if there is a standard polynomial (I've read the spec <a href="http://www.itu.int/rec/T-REC-G.704-199810-I/en" rel="nofollow">pointed to by wikipedia</a> as the CRC4 spec without finding a definition of the polynomial).</p> <p>I'd also really appreciate some sort of test suite or test data to verify a CRC4 implementation.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1790380/how-can-i-sum-large-hexadecimal-values-in-perl 1 How can I sum large hexadecimal values in Perl? dls 2009-11-24T14:21:54Z 2009-11-25T14:09:45Z <p>I'm iterating over a set of 32-bit hexadecimal strings ("DEADBEEF", "12345678", etc..) and I'm trying to sum them together to form a 32-bit checksum. Assume that the variable <code>$temp</code> is loaded with some hexadecimal string in the example below.</p> <pre><code>my $temp; my $checksum; for (...) { #assume $temp is loaded with a new hex string here my $tempNum = hex ($temp); $checksum += $tempNum; $checksum &amp;= 0xFFFFFFFF; print printf("checksum: %08X",$checksum); } </code></pre> <p>The first few values are "7800798C", "44444444", and "44444444". The output is:</p> <blockquote> <p>checksum: 7800798C<br> checksum: BC44BDD0<br> checksum: FFFFFFFF<br> checksum: FFFFFFFF<br></p> </blockquote> <p>etc..</p> <p>as you can see the first two summations are correct and then it seems to saturate. Am I missing something regarding the size limit of Perl variables?</p> <p><strong>EDIT</strong>: This is the actual output from the script (string is the hex string, value is the decimal conversion of that string, and checksum is the resulting output):</p> <pre> string: 7800798C, value: 2013297036, checksum 7800798C string: 44444444, value: 1145324612, checksum BC44BDD0 string: 44444444, value: 1145324612, checksum FFFFFFFF string: 44444444, value: 1145324612, checksum FFFFFFFF string: 78007980, value: 2013297024, checksum FFFFFFFF string: 44444444, value: 1145324612, checksum FFFFFFFF </pre> http://stackoverflow.com/questions/1767910/checksum-udp-calculation-python 0 checksum udp calculation python n00bie 2009-11-20T02:16:43Z 2009-11-24T15:24:37Z <p>Hi,</p> <p>I'd like to calculate the checksum of an udp header packet I want to send :</p> <p>packetosend = """60 00 00 00 00 24 3a 40 20 02 c0 a8 01 50 00 01 00 00 00 00 00 00 09 38 20 02 c0 a8 01 50 00 01 00 00 00 00 00 00 09 6f"""</p> <p>so i need to join this utf-16 (not a problem) and calculate the checksum of <strong>this</strong> specific packet. How can i do that ?</p> <p>Thanks !</p> <p>EDIT: Yes it's an IPv6 header for an ICMPv6 packet, anyways what i would like to know is the formula, and how it works.</p> <p>I'll give another example with an icmp ping echo (v4) packet:</p> <pre><code>packet = """ 08 00 d1 15 76 0c 00 07 bf d3 55 4a ad b5 03 00 // "d1 15" is the packet checksum 08 09 0a 0b 0c 0d 0e 0f 10 11 12 13 14 15 16 17 18 19 1a 1b 1c 1d 1e 1f 20 21 22 23 24 25 26 27 28 29 2a 2b 2c 2d 2e 2f 30 31 32 33 34 35 36 37""" </code></pre> <p>Thanks.</p> http://stackoverflow.com/questions/1735504/tips-on-building-a-byte-protocol 2 Tips on building a byte protocol Jeremy Rudd 2009-11-14T20:33:00Z 2009-11-14T21:17:01Z <p>I'm communicating data between devices, and I have to program the protocol as an array of bytes.</p> <p>Any tips when building protocols at a low-level? .. Eg:</p> <ul> <li>Use a 2 byte header, to send the length of the message before the data bytes.</li> <li>Use a CRC/data validation scheme. (How do I do this? Any simple checksums?)</li> </ul> http://stackoverflow.com/questions/847450/checksum-calculation 0 checksum calculation ratan 2009-05-11T09:59:47Z 2009-11-12T13:47:09Z <p>To calculate CRC I found a piece of code but I am not understanding the concept. Here is the code: </p> <pre><code>count =128 and ptr=some value; </code></pre> <pre><code>calcrc(unsigned char *ptr, int count) { unsigned short crc; unsigned char i; crc = 0; while (--count &gt;= 0) { crc = crc ^ (unsigned short)*ptr++ &lt;&lt; 8; i = 8; do { if (crc &amp; 0x8000) crc = crc &lt;&lt; 1 ^ 0x1021; else crc = crc &lt;&lt; 1; } while(--i); } return (crc); } </code></pre> <p>Please any body explain and tell me the logic. </p> http://stackoverflow.com/questions/1700650/checking-for-duplicate-files-without-storing-their-checksums 2 Checking for Duplicate Files without Storing their Checksums Optimize Prime 2009-11-09T12:17:02Z 2009-11-09T13:27:06Z <p>For instance, you have an application which processes files that are sent by different clients. The clients send tons of files everyday and you load the content of those files into your system. The files have the same format. The only constraint that you are given is you are not allowed to run the same file twice. </p> <p>In order to check if you ran a particular file is to create a checksum of the file and store it in another file. So when you get a new file, you can create the checksum of that file and compare against the checksums of others files that you have run and stored.</p> <p>Now, the file that contains all the checksums of all the files that you have run so far is getting really, really huge. Searching and comparing is taking too much time. Users are getting crazy when they click a button and don't see the server's response in a few seconds.</p> <p>NOTE: The application uses flat files as its database. Please do not suggest to use rdbms or the like. It is simply not possible at the moment.</p> <p>Do you think there could be another way to check the duplicate files?</p> http://stackoverflow.com/questions/911389/can-i-get-the-md5sum-of-a-directory-with-perl 0 Can I get the MD5sum of a directory with Perl? BrianH 2009-05-26T15:47:32Z 2009-10-30T07:36:15Z <p>I am writing a Perl script (in Windows) that is using File::Find to index a network file system. It works great, but it takes a very long time to crawl the file system. I was thinking it would be nice to somehow get a checksum of a directory before traversing it, and it the checksum matches the checksum that was taken on a previous run, do not traverse the directory. This would eliminate a lot of processing, since the files on this file system do not change often.</p> <p>On my AIX box, I use this command:</p> <pre><code>csum -h MD5 /directory </code></pre> <p>which returns something like this:</p> <pre><code>5cfe4faf4ad739219b6140054005d506 /directory </code></pre> <p>The command takes very little time:</p> <pre><code>time csum -h MD5 /directory 5cfe4faf4ad739219b6140054005d506 /directory real 0m0.00s user 0m0.00s sys 0m0.00s </code></pre> <p>I have searched CPAN for a module that will do this, but it looks like all the modules will give me the MD5sum for every file in a directory, not for the directory itself.</p> <p>Is there a way to get the MD5sum for a directory in Perl, or even in Windows for that matter as I could call a Win32 command from Perl?</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1597585/bit-shifting-in-internet-checksums 2 Bit shifting in internet checksums. Rob 2009-10-20T22:03:53Z 2009-10-20T22:17:40Z <p>This is almost certainly a very silly question, but for some reason I'm having trouble with internet checksum calculations. All of the algorithms basically look something like this:</p> <pre><code>WORD chksm(WORD *startpos, WORD checklen){ ulong sum = 0; WORD answer = 0; while (checklen &gt; 1) { sum += *startpos++; checklen -= 2; } if (checklen == 1) { *(BYTE *)(&amp;answer) = *(BYTE *)startpos; sum += answer; } sum = (sum &gt;&gt; 16) + (sum &amp; 0xffff); sum += (sum &gt;&gt; 16); answer = ~sum; return answer;} </code></pre> <p>I'm clear on everything except for the line:</p> <pre><code>sum += (sum &gt;&gt; 16); </code></pre> <p>It looks like the line immediately before it adds the top 16 bits to the bottom 16 bits, leaving all zeroes in the top 16 bits. If that's the case, then wouldn't sum >> 16 now be equal to zero? And if so, why is that line there?</p> <p>Or am I (likely) just having a complete mental failure today? </p> http://stackoverflow.com/questions/1545570/why-is-the-calculated-checksum-not-matching-the-bcc-sent-over-the-serial-port 1 Why is the calculated checksum not matching the BCC sent over the serial port? Morinar 2009-10-09T19:08:56Z 2009-10-15T20:40:06Z <p>I've got a little application written in C# that listens on a SerialPort for information to come in. The information comes in as: <code>STX + data + ETX + BCC</code>. We then calculate the BCC of the transmission packet and compare. The function is:</p> <pre><code>private bool ConsistencyCheck(byte[] buffer) { byte expected = buffer[buffer.Length - 1]; byte actual = 0x00; for (int i = 1; i &lt; buffer.Length - 1; i++) { actual ^= buffer[i]; } if ((expected &amp; 0xFF) != (actual &amp; 0xFF)) { if (AppTools.Logger.IsDebugEnabled) { AppTools.Logger.Warn(String.Format("ConsistencyCheck failed: Expected: #{0} Got: #{1}", expected, actual)); } } return (expected &amp; 0xFF) == (actual &amp; 0xFF); } </code></pre> <p>And it seems to work more or less. It is accurately not including the STX or the BCC and accurately including the ETX in it's calculations. It seems to work a very large percentage of the time, however we have at least two machines we are running this on, both of which are Windows 2008 64-bit in which the BCC calculation NEVER adds up. Pulling from a recent log I had in one byte 20 was sent and I calculated 16 and one where 11 was sent and I calculated 27.</p> <p>I'm absolutely stumped as to what is going on here. Is there perhaps a 64 bit or Windows 2008 "gotcha" I'm missing here? Any help or even wild ideas would be appreciated.</p> <p>EDIT:</p> <p>Here's the code that reads the data in:</p> <pre><code>private void port_DataReceived(object sender, System.IO.Ports.SerialDataReceivedEventArgs e) { // Retrieve number of bytes in the buffer int bytes = serialPort.BytesToRead; // Create a byte array to hold the awaiting data byte[] received = new byte[bytes]; //read the data and store it serialPort.Read(received, 0, bytes); DataReceived(received); } </code></pre> <p>And the <code>DataReceived()</code> function takes that string and appends it to global <code>StringBuilder</code> object. It then stays as a string builder until it's passed to these various functions at which point the <code>.ToString()</code> is called on it.</p> <p>EDIT2: Changed the code to reflect my altered routines that operate on bytes/byte arrays rather than strings.</p> <p>EDIT3: I still haven't figured this out yet, and I've gotten more test data that has completely inconsistent results (the amount I'm off of the send checksum varies each time with no pattern). It feels like I'm just calculating the checksum wrong, but I don't know how.</p> http://stackoverflow.com/questions/1560306/calculate-hash-or-checksum-for-a-table-in-sql-server 3 Calculate Hash or Checksum for a table in SQL Server Gabe Brown 2009-10-13T13:35:44Z 2009-10-13T15:08:26Z <p>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 has to be converted to nvarchar first. So I need to break it down into two problems:</p> <ol> <li>calculate a checksum for a row, schema is unknown before runtime.</li> <li>calculate the checksum for all of the rows to get the full table checksum.</li> </ol> http://stackoverflow.com/questions/1552789/is-there-any-metadata-associated-with-word-document 1 Is there any metadata associated with word document? Prabhu 2009-10-12T04:56:46Z 2009-10-12T05:09:24Z <p>Hi,</p> <p>I am trying to generate check sum of a word document by opening at binary level. I generate the check sum of the document. Copy the document to a different location. When I generate the checksum at the new location I get a different value though I haven't changed the contents of the document. The check sum varies even if I copy the document back to the same location. This does not happen with other file types such as .txt or .pdf files. So this proves that there are no bugs in the check sum generation. But what I feel is that by opening a .doc file in binary level, I am generating checksum for metadata of the document which varies. Am I right? Please enlighten me.</p> http://stackoverflow.com/questions/545858/imap-how-to-validate-that-complete-message-was-transferred 1 imap - how to validate that complete message was transferred? Saurabh 2009-02-13T13:11:44Z 2009-10-08T07:12:47Z <p>Does IMAP protocol provide any way to validate / verify that complete message was transferred from the server to local client? i.e. is there any equivalent of ETag / MD5 or some other checksum?</p> http://stackoverflow.com/questions/1535724/how-do-i-calculate-a-rebol-3-module-checksum 1 How do I calculate a REBOL 3 module checksum? Gregory Higley 2009-10-08T05:02:38Z 2009-10-08T06:39:24Z <p>It's possible in REBOL 3 to calculate a SHA1 module checksum. When REBOL loads a module, it compares its checksum against the checksum of the loaded module, and if the two do not match, an error is generated, viz. <code>access error: invalid checksum (tampered file)</code>.</p> <p>No matter how I try, I can't seem to create a module checksum that REBOL 3 likes. When I look at the documentation for <code>import</code>, its <code>/check</code> refinement says to use <code>checksum/secure</code> of <code>mold/flat</code>. I've tried all sorts of variations of this with no luck:</p> <pre>import/check %module.r checksum/secure to-binary mold/flat load/all %module.r import/check %module.r checksum/secure to-binary mold/flat load %module.r import/check %module.r checksum/secure to-binary mold/only/flat load/all %module.r import/check %module.r checksum/secure to-binary mold/only/flat load %module.r import/check %module.r checksum/secure read %module.r</pre> <p>and so on. None of it works. There's got to be some simple thing I'm doing wrong.</p> <p><strong>UPDATE:</strong></p> <p>I've voted to close this question because I figured it out by looking at the source code to REBOL 3's <code>import</code> function, which turned out to be a <code>function!</code> instead of a <code>native!</code> as I'd thought.</p> <p>Here is the answer:</p> <pre>import/check %module.r checksum/secure to-binary mold/flat load/unbound/header %module.r</pre> <p>Of course, ordinarily you would pre-calculate the checksum and use it as a literal, otherwise it wouldn't do you much good as a security check:</p> <pre>import/check %module.r #{A3CD837D0CF843302221C074E88A64AA0147E07E}</pre> http://stackoverflow.com/questions/1480580/udp-checksum-calculation 1 UDP checksum calculation Deepak Konidena 2009-09-26T06:29:51Z 2009-09-26T11:55:37Z <p>Hi,</p> <p>The UDP header struct defined at /usr/include/netinet/udp.h is as follows</p> <pre><code>struct udphdr { u_int16_t source; u_int16_t dest; u_int16_t len; u_int16_t check; }; </code></pre> <p>What value is stored in the check field of the header? How to verify if the checksum is correct? I meant on what data is the checksum computed? (Is it just the udp header or udp header plus the payload that follows it?)</p> <p>Thanks.</p> http://stackoverflow.com/questions/1426333/reproducable-md5-sha1-on-a-rebuild-of-c-exe 13 Reproducable MD5/SHA1 on a rebuild of C# .exe Siyfion 2009-09-15T10:29:59Z 2009-09-23T21:37:04Z <p>Hi, I'll give you a little bit of background first as to why I'm asking this question:</p> <p>I am currently working in a stricly-regulated industry and as such our code is quite carefully looked-over by official test houses. These test houses expect to be able to build the code and generate an .exe or .dll which is EXACTLY the same each and every time (without changing any code obviously!). They check the MD5 and the SHA1 of the executables that they create to ensure this.</p> <p>Up until this point I have predominantly been coding in C++, where (after a few project setting tweaks) I managed to get the projects to rebuild consistantly to the same MD5/SHA1. I am now using C# in a project and am having great difficulty getting the MD5's to match after a rebuild. I am aware that there are "Time-Stamps" in the PE header of the file, and they have been cleared to 0. I am also aware that there is a GUID for the .exe, which again has been cleared to 00 00 00... etc. However the files still don't match.</p> <p>I'm using CFF Explorer to view and edit the PE Header to remove the time and date stamps. After using a binary comparison tool there are only 2 blocks of bytes in the .exe's that are different (both very small).</p> <p>One of the inconsistant blocks appears <em>just</em> before some binary code, which in ASCII details the path of the <code>*Project*\obj\Release\xxx.pdb</code> file.</p> <p><strong>EDIT:</strong> This is now known to be the GUID of the *.pdb file, however I still don't know if I can modify it without causing any errors!?</p> <p>The other block appears in the middle of what looks to be function names, ie. (a typical section) <code>AssemblyName.GetName.Version.get_Version.System.IO.Ports.SerialPort.Parity.Byte.&lt;PrivateImplementationDetails&gt;{</code> </p> <p>then the different code block: </p> <p><code>4A134ACE-D6A0-461B-A47C-3A4232D90816</code> </p> <p>followed by:</p> <p>"}.ValueType.__StaticArrayInitTypeSize=7.$$method0x60000ab-1.RuntimeFieldHandle.InitializeArray`... etc..</p> <p>Any ideas or suggestions would be most welcome!</p> http://stackoverflow.com/questions/1418964/generating-luhn-checksums 1 Generating Luhn Checksums Alix Axel 2009-09-13T22:04:06Z 2009-09-14T12:01:46Z <p>There are lots of implementations for validating Luhn checksums but very few for generating them. I've come across <a href="http://imei.sms.eu.sk/" rel="nofollow">this one</a> however in my tests it has revealed to be buggy and I don't understand the logic behind the delta variable.</p> <p>I've made this function that supposedly should generated Luhn checksums but for some reason that I haven't yet understood the generated checksums are invalid half of the time.</p> <pre><code>function Luhn($number, $iterations = 1) { while ($iterations-- &gt;= 1) { $stack = 0; $parity = strlen($number) % 2; $number = str_split($number, 1); foreach ($number as $key =&gt; $value) { if ($key % 2 == $parity) { $value *= 2; if ($value &gt; 9) { $value -= 9; } } $stack += $value; } $stack = 10 - $stack % 10; if ($stack == 10) { $stack = 0; } $number[] = $stack; } return implode('', $number); } </code></pre> <p>Some examples:</p> <pre><code>Luhn(3); // 37, invalid Luhn(37); // 372, valid Luhn(372); // 3728, invalid Luhn(3728); // 37283, valid Luhn(37283); // 372837, invalid Luhn(372837); // 3728375, valid </code></pre> <p>I'm validating the generated checksums <a href="http://planzero.org/bits/example%5Fluhn%5Fcheck" rel="nofollow">against this page</a>, what am I doing wrong here?</p> <p><hr /></p> <p><strong>For future reference, here is the working function.</strong></p> <pre><code>function Luhn($number, $iterations = 1) { while ($iterations-- &gt;= 1) { $stack = 0; $number = str_split(strrev($number), 1); foreach ($number as $key =&gt; $value) { if ($key % 2 == 0) { $value = array_sum(str_split($value * 2, 1)); } $stack += $value; } $stack %= 10; if ($stack != 0) { $stack -= 10; } $number = implode('', array_reverse($number)) . abs($stack); } return $number; } </code></pre> <p>I dropped the $parity variable since we don't need it for this purpose, and to verify:</p> <pre><code>function Luhn_Verify($number, $iterations = 1) { $result = substr($number, 0, - $iterations); if (Luhn($result, $iterations) == $number) { return $result; } return false; } </code></pre> http://stackoverflow.com/questions/1414585/still-need-checksum-in-application-protocol-when-tcp-ip-already-has-it 0 Still need checksum in application protocol when tcp/ip already has it? Benny 2009-09-12T07:52:28Z 2009-09-12T13:13:28Z <p>I am designing an application protocol, and i am wondering if i still need include checksum in the protocol since tcp/ip already has checksum. what's your opinion?</p> http://stackoverflow.com/questions/1377739/image-file-cheksum-as-a-unique-content-compare-optimalisation 1 Image file cheksum as a unique content compare optimalisation Vaclav Kohout 2009-09-04T07:36:25Z 2009-09-04T09:28:35Z <p>Users are uploading fotos to our php build system. Some of them we are marking as forbidden because of not relevant content. I´m searching for optimalisation of an 'AUTO-COMPARE' algorithm which is skipping these marked as forbidden fotos. Every upload need to be compared to many vorbinden.</p> <p>Possible solutions:</p> <p>1/ Store forbidden files and compare whole content - works well but is slow.</p> <p>2/ Store image file checksum and compare the checksums - this is the idea to improve the speed.</p> <p>3/ Any inteligent algorithm which is fast enough and can compare similarity between photos. But I dont have any ideas abut these in PHP.</p> <p>What is the best solution?</p> http://stackoverflow.com/questions/1358510/c-how-to-compare-2-files-fast 5 C# - How to compare 2 files fast? Jeremy Rudd 2009-08-31T17:38:39Z 2009-09-01T00:05:32Z <p><a href="http://support.microsoft.com/kb/320348" rel="nofollow">Typical approaches</a> recommend reading the binary via FileStream and comparing it byte-by-byte.</p> <ul> <li>Would a checksum comparison such as CRC be faster?</li> <li>Are there any .NET libraries that can generate a checksum for a file?</li> </ul> http://stackoverflow.com/questions/1100730/what-algorithm-to-use-to-calculate-a-check-digit 3 What algorithm to use to calculate a check digit? Piotr Dobrogost 2009-07-08T21:53:16Z 2009-08-29T12:35:02Z <p>What algorithm to use to calculate a check digit for a list of digits?<br /> The length of the list is between 8 and 12 digits.</p> <p>see also:<br /> <a href="http://stackoverflow.com/questions/46231/how-to-generate-a-verification-code-number">How to generate a verification code/number?</a></p> http://stackoverflow.com/questions/1348627/how-can-i-tell-if-two-image-files-are-the-same-in-perl 1 How can I tell if two image files are the same in Perl? Morinar 2009-08-28T18:27:06Z 2009-08-28T19:32:08Z <p>I have a Perl script I wrote for my own personal use that fetches image files from a website periodically. It then saves these images to a folder. These image files are quite often the same from fetch to fetch, and I'd like to not save duplicates if I can get around it.</p> <p>My question: What would be the best way to compare/check if they are the same?</p> <p>My only real thought so far is to open a file handle to existing one, md5 it, md5 the $response->content from the fetch and then compare them. Would that work?</p> <p>Is there a better way?</p> <p>EDIT:</p> <p>Wow, already tons of great suggestions. Does it help if I tell you that this script runs daily via cron? I.e. it is guaranteed to always run at the exact same time everyday? Also: I'm looking at the last-modified headers on some of these, and they don't look 100% accurate, i.e. there are some that have a last-modified of over a week ago when I know the image is more recent than that. I'm assuming that's because the image file itself hasn't been modified on the server since then... which doesn't help me much...</p> http://stackoverflow.com/questions/1323178/error-detection-effiency-crc-checksum-etc 2 Error Detection Effiency (CRC, Checksum, etc) Bua 2009-08-24T15:49:15Z 2009-08-24T16:20:26Z <p>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 error in a few bits in a row.</p> <p>At first I thought of using a checksum, but apparently that can miss bit errors larger than a single bit. A parity check won't work either so CRC might be the best option.</p> <p>Is using a Cyclic Redundancy Check on a thousand bytes efficient? Or are there other methods that would work better?</p> http://stackoverflow.com/questions/1260432/enough-using-checksum 0 enough using checksum blefesd 2009-08-11T13:38:52Z 2009-08-11T13:55:33Z <p>How would you do that?</p> <p>You are sending files which contains many lines.Every line is a record from database.</p> <p>All files are zipped toggether into one file. Is it enough to send a checksum with this file to ensure that other side received all records and none has disappear?</p> http://stackoverflow.com/questions/1136642/ean-8-how-to-calculate-checksum-digit 2 EAN 8 : How to calculate checksum digit ? Ben 2009-07-16T10:12:21Z 2009-07-31T21:22:20Z <p>I need to create EAN 8 bar code programmatically. I search an algorithm to calculate the checksum digit.</p> http://stackoverflow.com/questions/1057087/how-to-build-twice-the-same-linux-kernel-sources-and-get-the-the-same-checksum 2 How to build twice the same Linux Kernel sources and get the the same checksum gsempe 2009-06-29T08:01:25Z 2009-07-31T21:12:18Z <p>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?</p> http://stackoverflow.com/questions/1208845/sql-table-self-reference-query-vs-unique-constraints-using-checksum 0 SQL table self-reference query vs. unique constraints using checksum Cameron 2009-07-30T19:37:10Z 2009-07-31T13:32:55Z <p>I would like to better understand the differences for checking uniqueness in a record before an INSERT between using <strong>CHECKSUM (with unique constraints)</strong> versus <strong>self-referencing table</strong> statement like the one below. What scenarios would pose one option to be the best choice over the other, and for what reasons?</p> <p>Requirement: <em>Each set of columns need to be unique from every record in the table, which is why I put this statement together; to check for all columns in one call to the database.</em></p> <pre><code>INSERT INTO tblTable (Column1, Column2, Column3, Column4, Column5, Column6) SELECT @Column1, @Column2, @Column3, @Column4, @Column5, @Column6 WHERE NOT EXISTS (SELECT DISTINCT t1.Column1, t1.Column2, t2.Column3, t2.Column4, t3.Column5, t3.Column6 FROM tblTable t1 JOIN tblTable t2 ON (t1.UID = t2.UID) JOIN tblTable t3 ON (t1.UID = t3.UID) WHERE t1.Column1 = @Column1 and t1.Column2 = @Column2 and t2.Column3 = @Column3 and t2.Column4 = @Column4 and t3.Column5 = @Column5 and t3.Column6 = @Column6) </code></pre> http://stackoverflow.com/questions/1194630/should-i-use-crc-16-or-ip-checksum-rfc1071-for-an-embedded-application 2 Should I use CRC-16 or IP checksum (RFC1071) for an embedded application? florin 2009-07-28T14:49:02Z 2009-07-31T01:20:23Z <p>I'm writing an embedded application on an ARM7 processor and I need some form of checksum for data that I'm sending over a serial link as well for data that I'm storing in the flash. I was wondering which of the two CRCs would be better suited for the purpose. The main trade-off are code speed versus robustness. Should I consider another CRC? Do you have a link to an efficient implementation for ARM?</p> http://stackoverflow.com/questions/1179439/best-way-to-generate-order-numbers-for-an-online-store 5 Best way to generate order numbers for an online store? Horace Loeb 2009-07-24T18:44:38Z 2009-07-24T20:22:10Z <p>Every order in my online store has a user-facing order number. I'm wondering the best way to generate them. Criteria include:</p> <ul> <li>Short</li> <li>Easy to say over the phone (e.g., "m" and "n" are ambiguous)</li> <li>Unique</li> <li>Checksum (overkill? Useful?)</li> <li><strong>Edit:</strong> Doesn't reveal how many total orders there have been (a customer might find it unnerving to make your 3rd order)</li> </ul> <p>Right now I'm using the following method (no checksum):</p> <pre><code>def generate_number possible_values = 'abfhijlqrstuxy'.upcase.split('') | '123456789'.split('') record = true while record random = Array.new(5){possible_values[rand(possible_values.size)]}.join record = Order.find(:first, :conditions =&gt; ["number = ?", random]) end self.number = random end </code></pre>