1
vote
2answers
63 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
0
votes
1answer
63 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 …
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.
…
1
vote
4answers
131 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
65 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 …
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 …
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 …
3
votes
1answer
127 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
2answers
129 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 …
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 …
1
vote
1answer
429 views
UDP checksum calculation
Hi,
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 …
13
votes
4answers
396 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 carefully looked-over by …
1
vote
1answer
213 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 …
