1
vote
2answers
72 views
How do I check if a string is a valid md5 or sha1 checksum string
I don't want to calculate a file's checksum, just to know if a given string is a valid checksum
3
votes
3answers
116 views
Compiling Twice with Delphi 6 and getting the same checksum on the binary
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.
…
0
votes
1answer
68 views
CRC-4 implementation in C#
Hi.
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.
Is there anyone who's able to give me a reference …
1
vote
4answers
139 views
How can I sum large hexadecimal values in Perl?
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 $temp is loaded with some …
0
votes
1answer
73 views
checksum udp calculation python
Hi,
I'd like to calculate the checksum of an udp header packet I want to send :
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 …
2
votes
5answers
71 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 …
0
votes
4answers
313 views
checksum calculation
To calculate CRC I found a piece of code but I am not understanding the concept.
Here is the code:
count =128 and ptr=some value;
calcrc(unsigned char *ptr, int count)
{
unsigned short …
2
votes
9answers
80 views
Checking for Duplicate Files without Storing their Checksums
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 …
0
votes
5answers
355 views
Can I get the MD5sum of a directory with Perl?
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 …
2
votes
3answers
96 views
Bit shifting in internet checksums.
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:
WORD chksm(WORD …
1
vote
2answers
131 views
Why is the calculated checksum not matching the BCC sent over the serial port?
I've got a little application written in C# that listens on a SerialPort for information to come in. The information comes in as: STX + data + ETX + BCC. We then calculate the BCC of the …
3
votes
1answer
132 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 …
1
vote
1answer
42 views
Is there any metadata associated with word document?
Hi,
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 …
1
vote
1answer
67 views
imap - how to validate that complete message was transferred?
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?
1
vote
0answers
29 views
How do I calculate a REBOL 3 module checksum?
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 …
