A checksum or hash sum is a fixed-size datum computed from an arbitrary block of digital data for the purpose of detecting accidental errors that may have been introduced during its transmission or storage. The integrity of the data can be checked at any later time by recomputing the checksum and ...

learn more… | top users | synonyms

1
vote
1answer
49 views

CRC-CCITT Implementation

I am using the following function to generate a CRC sum and it doesn't appear to be returning the same checksum when compared to online CRC-CCITT calculators. This function specifically uses the ...
0
votes
4answers
54 views

Is there a more elegant way to detect changes in a large SQL table without altering it? [duplicate]

Suppose you have a reasonably large (for local definitions of “large”), but relatively stable table. Right now, I want to take a checksum of some kind (any kind) of the contents of the entire table. ...
0
votes
1answer
22 views

Checksum on slides content

I have trainings which contain slides. When user request to load the training, all its slides are copy to view_slides table. But I don't want to copy those slides on each training load, so I want to ...
-6
votes
0answers
36 views

Hex code cracking [closed]

I'm doing some sort of game with friends where i got the following problem: HEX code --> PHP validator (checksum)? --> returns true or false Normally this would be hard to solve without any ...
2
votes
0answers
27 views

Create checksum of large sparse image in linux

I have several sparse images on my linux server (320G total size; 111G used size) and would like to get a checksum of these every night. I was wondering whether there is an efficient way to create the ...
0
votes
0answers
8 views

Checksum Error in NOIP2

I have been using noip2 on my ubunutu server for awhile and haven't had any issues. Now when starting it I get "Checksum error in '/usr/local/etc/no-ip2.conf'. Ending!" I can't figure out what this ...
0
votes
1answer
35 views

How to create MD5 checksum for tar files in maven

I have a set of tar files. I wanted to create MD5 checksum for those files using Maven. How to do it? i created this tar files using maven-assembly-plugin.
0
votes
0answers
49 views

Download file and check integrity

I have a server running PHP on which i can upload zip archives using a custom form in administration panel. When I upload a zip archive, I calculate a CRC32 checksum of it and I insert it into my ...
0
votes
0answers
15 views

Python + Paramiko - Checking whether two files are identical without downloading

I have a script that downloads a lot of fairly large (20MB+) files. I would like to be able to check if the copy I have locally is identical to the remote version. I realize I can just use a ...
1
vote
1answer
48 views

Checksums and Shortening

I have two Checksum algorithms as follows: DWORD QuickCheckSum(DWORD *BufferData, size_t Size) { if(!BufferData) return 0x0; DWORD Temp = 0, Sum = *BufferData; for(size_t I = 1; I < ...
0
votes
1answer
17 views

Checksum returning same value for different sets

Curious why the SQL Server checksum function is returning the same value for these two different input values? SELECT CHECKSUM(2792,2847), 2792+2847 » **42399**,5639 SELECT CHECKSUM(2716,3167), ...
0
votes
0answers
8 views

what is kernel mode file integrity checker?

I have a project to design a kernel mode file integrity checker. But I am confused, as in what is the difference between a kernel mode file integrity check and a user mode file integrity check. how ...
0
votes
1answer
31 views

Need Assistance in Calculating Checksum

I am working on an interface in Python to a home automation system (ElkM1). I have sample code in C# below which apparently correctly calculates the checksum needed when sending messages to this ...
0
votes
2answers
58 views

IP header checksum: 0x0000

I have a JAX-RS web service which is secured via TLS. Hence encryption is very important I decided to check the network traffic with RawCap and analyze it with WireShark. Doing this, is stumbled over ...
1
vote
4answers
74 views

File Checksums in Python

I am creating an application related to files. And I was looking for ways to compute checksums for files. I want to know what's the best hashing method to calculate checksums of files md5 or SHA-1 or ...
0
votes
1answer
30 views

Crc32 Compatibility between .NET and php

i try to calculate checksum in .net in order to send data to php server. I use an webservice... php use Crc32 function link the php checksum is only numbers... and i use crc32 from here my call is ...
0
votes
1answer
26 views

XOR parity check with PHP

My client's PHP web application imports CSV data from a 3rd party, and I've been tasked with validating the incoming data by using a checksum to perform a parity check on each line of CSV data. An ...
0
votes
1answer
71 views

Node.js & Crypto: Store the current state of a crypto.createHash Instance to reuse it later

How to store the current state of crypto.createHash('sha1') (after it got filled with hash.update(buffer)) to use it at another http request which might occur at a different process of node.js? I ...
0
votes
1answer
13 views

Md5-Hash-ByteArray is working in programm but not in external validator, (need to convert it to some kind of String)

I am creating a raw MD5-Bytearray of some file and store it in a DB. Then, when I upload the file I validate the Checksum. So far everything works fine. Now I am trying to display the Checksum in ...
0
votes
1answer
59 views

using github as maven repository Checksum validation failed

I've tried to use github as a maven repository for a project I host there, but I'm having some issues getting it to work. First off, here's the project: https://github.com/dwatrous/cache4guice I ...
0
votes
1answer
40 views

Batch script to change MD5 of all files in every folder

I am using this to change the MD5 of all .rar-files. FOR %%a in (*.rar) do ECHO.>> %%a The problem is: The *.bat has to be in the folder where the .rar-files are, but I want to put the *.bat ...
0
votes
0answers
29 views

Two messages with same CRC32 checksum [closed]

I need to alter the content of a message but end up with the same CRC32 checksum. I had a specific change that needs to be made but after that I need to figure out how to add/remove spaces to get a ...
-1
votes
1answer
70 views

Generate checksum in vbscript

I have a tool "File Checksum Integrity Verifier" to generate checksum. Can anybody help me how to run this tool from vbscript to get checksum for a file? Any help would be really appreciated.
4
votes
1answer
152 views

Eliminating sequences in a message

I have an odd communications channel, and I need to detect errors as well as eliminate certain sequences in the channel. Each message is 12 bits long, split into 3 nibbles (of 4 bits each). I need to ...
0
votes
1answer
116 views

TCP Checksum Calculation Changing - tcp offloading is disabled

I am manipulating TCP packets using netfilter, so I have to recalculate the TCP and IP checksums which is working as expected. Wireshark reports the checksums are correct on the way out of the ...
0
votes
2answers
100 views

How long should a checksum be?

TCP segments include a checksum field of 16-bits and so do IP datagrams and UDP packets. However at the link layer, the CRC checksum is only 4 bits (for 802.3 and 802.4). On the extreme part of the ...
0
votes
1answer
16 views

TCP checksum field?

1) In TCP, does checksum is done also over the data field? In http://www.ietf.org/rfc/rfc793.txt site, it is said that "The checksum field is the 16 bit one's complement of the one's complement sum ...
0
votes
1answer
24 views

My checksum of 5 bytes of data does not

I'm processing 6-byte messages from a piece of serial hardware. In their manual, the manufacturer has laid out that the checksum of each message (its 6th byte) is composed of 'the low byte of the ...
1
vote
0answers
85 views

Verifying checksum in IP Packet in python

I need to verify the checksum header of an IP Packet. So far I used the function checksum published in the forum, I guess the result i should get is a cero (using header and checksum) but I get 29574. ...
0
votes
1answer
93 views

How to get the checksum of a file with Qt?

I have the file path. How can I get the MD5 or SHA-1 checksum/hash of that file with Qt? I tried the following: fileHash = QCryptographicHash::hash(filePath, QCryptographicHash::Md5); But since ...
0
votes
1answer
37 views

Is this the correct way to use a checksum?

I'm working on an app that, among other things, downloads images from the web. Some of my testers are finding that images fails to download. In some cases, downloading fails in the middle. The image ...
1
vote
1answer
47 views

CHECKSUM and CHECKSUM_AGG: What's the algorithm?

We perform checksums of some data in sql server as follows: declare @cs int; select @cs = CHECKSUM_AGG(CHECKSUM(someid, position)) from SomeTable where userid = @userId group by ...
-1
votes
2answers
62 views

Socket checksum issue

This may be a straightforward solution but basically I am sending a binary file piece-by-piece to another program using TCP and checking to make sure the checksum matches for validity. The problem is ...
1
vote
1answer
69 views

Comparing local file against checksum using Net::HTTP in Ruby without downloading full file

Without being able to control or add headers server-side, is it possible to compare a local checksum against a remote file without downloading the entire file and comparing checksums using Ruby and ...
1
vote
1answer
121 views

Which CRC Alogrithim is this? How to improve?

I have a telemetry stream that is passed through a hardware CRC generator appending the CRC to the end of each telemetry frame. Now I am trying to make something to verify the hardware generated CRC. ...
0
votes
0answers
38 views

Hamming distance value for j1850 crc

I have to implement j1850 8 bit crc on a message length on 56 excluding crc part. Can anybody tell me the hamming distance for this if my polynomial is x^8 + x^4+x^3+x^2+1.
2
votes
2answers
124 views

Identification of packets in a byte stream

I'm having a bit of a problem with the communication to an accelerometer sensor. The sensor puts out about 8000 readings/second continuously. The sensor is plugged in to a usb port with an adaper and ...
0
votes
1answer
31 views

Jquery checksum

I'm building a kiosk contest that will run on an iPad, and I've built it so that once the form loads, it can run offline by storing each entry using localStorage. Every 15 minutes, the webpage will ...
-6
votes
1answer
105 views

What layers does IPv6/IPv4 use when running on TCP/IP? [closed]

When using TCP/IP with IPV4, do servers perform checksum on the network-layer? When using TCP/IP with IPV4, do servers perform checksum on the transport-layer? When using TCP/IP with IPV6, do servers ...
0
votes
1answer
87 views

How to calcuate IEEE 802.11 CRC-32 FCS?

This is from IEEE Std 802.11-2012 Clause 8.2.4.8 FCS field: I cannot understand the last two paragraphs: What's the meaning by "the initial remainder of the division is preset to all ones", and ...
0
votes
0answers
98 views

UDP checksum changing to 0 when using RAW sockets on Windows 7

I have created a RAW socket and set the socket option as "IP_HDRINCL". I am building the IP header, UDP header and payload and sending the UDP packet out. I am calculating the UDP checksum as per the ...
0
votes
1answer
33 views

Django: add checksum su models

In a Django app I need to check data integrity (that is I want to detect if someone has altered the content of a record from outside the application [e.g. by changing data by hand in the DB]). My ...
0
votes
1answer
98 views

checksum code in client server communication

I have written a code to send a TCP packet and receive acknowledgement packet. I want to implement checksum in the code to check data consistency but failed to write the code(in C language) ...
1
vote
1answer
62 views

How do I perform a checksum of a MySQL table using C#?

I would like to check if my MySQL table has been changed, I thought doing a checksum on it might be a good solution. I'm using the official MySQL .NET connector. Normally I use the MySqlDataReader to ...
0
votes
1answer
43 views

MySql Query for Summarizing per Year or per Month

I have the following table structure: table={id,DailyDate,value1,value2} with DailyDate ex. 2000-01-01 How i can get a summarize result firstly per month and secondly per year for each value? I was ...
1
vote
2answers
116 views

Checksum for binary PLC communication

I've been scratching my head around calculating a checksum to communicate with Unitronics PLCs using binary commands. They offer the source code but it's in a Windows-only C# implementation, which is ...
1
vote
0answers
48 views

Is there any Checksum like mechanism for JSON?

I need to upload large amount of JSON data to a webservice. Whats the best way to analyse that the server received the data correctly and all data is uploaded? Please let me know if anyone has any ...
1
vote
0answers
44 views

Lock dependencies by secure checksum in Maven

When I distribute a source project with a POM I can define dependencies with version strings. The build will download those dependencies if they are not in the local repository, it will even verify ...
0
votes
1answer
132 views

CRC32 java differs on java 64 bits

Recently I migrate an applicattion on tomcat5 with 32bit java to a tomcat6 with 64bits java. In the application have a text CRC calculation, which returns different values ​​in each of the servers. ...
0
votes
1answer
150 views

rsync how to do a checksum on rsync

When using rsync sometimes the rsync doesn't copy all the files done, below is my code I use. Is they a way to do a checksum or check after the rsync to see if all the files have been copied and if ...

1 2 3 4 5 12