A cyclic redundancy check (CRC) is an error-detecting code commonly used in digital networks and storage devices to detect accidental changes to raw data.
0
votes
0answers
27 views
What of lack this CRC-CCITT (Initial Value 0xFFFF) Encode?
I'm create CRC-CCITT Encode (Polynomail 0x1021 and Initial Value is 0xFFFF)
It is correct 8bit, 16bit, 24bit, 32bit ... (1 Byte, 2Byte, 3Byte ...)
But not correct answer 12bit, 20bit, 28bit ...
0
votes
0answers
20 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 ...
4
votes
1answer
116 views
+500
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
2answers
80 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 ...
-3
votes
0answers
31 views
Can someone confirm my CRC16 output? [closed]
We are having some disagreement between teams now on the correct result for a CRC16.
Here is my data set:
unsigned short p[8] = {
0xA53C,
0x0103,
0x0000,
0x0000,
0x0000,
...
-3
votes
0answers
60 views
Reverse CRC Hash [closed]
i tried to find a CRC hash algorithm which runs in the reverse way.Let me explain , we all know that when we give an m bit message and n bit polynomial CRC hash gives us (n-1) bit hash value. But what ...
1
vote
2answers
76 views
Creating a 6 bit crc using boost
I'm new to CRCs, boost and more of a java developer for that matter. I'm trying to use the the crc.hpp boost library to create a 6 bit crc calculated based on only two bits. First is this possible?
...
0
votes
1answer
63 views
Calculating CRC using Python zlib.crc32 function
I created a list of size 100 and populated the array with 8bit data in python using the following code and I want to calculate the CRC value using the zlib.crc32() function.
Init_RangenCrc8 = []
for ...
-1
votes
0answers
78 views
Is there a GUI Ubuntu/Linux file manager that verifies files (similar to TeraCopy)? [closed]
On Windows systems, I use TeraCopy as a simple Explorer replacement that is both faster and verifies integrity using CRC32. I'm looking for a Linux equivalent that can do verification on Debian ...
0
votes
1answer
34 views
.NET 4.5 Error detection in communication (CRC?)
I have a quite simple communication leveraging UDP protocol. I would like to add some error checking (probably a hash function which woudn't be influenced by previous messages). I know about the CRC ...
1
vote
1answer
101 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
23 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.
0
votes
1answer
53 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 ...
2
votes
1answer
104 views
Python CRC32 Calculation
I am trying to write some python code to test my hardware CRC module in the micro. The python code will calculate the crc value for a random data block and it will compare with the crc value returned ...
0
votes
1answer
31 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
2answers
108 views
CRC calculation takes too much time
On an Android app I am developing I can recognize a file through its CRC32, MD5 or SHA1 (I have xml file with a list of these).
I read that CRC32 is the faster to be calculated, so I decided to use ...
1
vote
1answer
85 views
POSIX cksum and Boost.CRC
I'm trying to implement the simple POSIX cksum using Boost.CRC.
The code I'm using amounts to this:
for(int i = 1; i<argc; ++i)
{
support::file current(argv[i], support::file::access::read);
...
1
vote
2answers
136 views
_mm_crc32_u64 poorly defined
Why in the world was _mm_crc32_u64(...) defined like this?
unsigned int64 _mm_crc32_u64( unsigned __int64 crc, unsigned __int64 v );
The "crc32" instruction always accumulates a 32-bit CRC, never a ...
0
votes
1answer
199 views
Calling C++ method from C# to calculate CRC
I have a C# server which needs to calculate a CRC (CRC16 – CCITT (xModem)) from a byte array. The thing is that I would like to make a call for a C++ code from C#, for performance gain. But I'm ...
1
vote
2answers
87 views
Using CRCs as a digest to detect duplicates among files
The primary use of CRCs and similar computations (such as Fletcher and Adler) seems to be for the detection of transmission errors. As such, most studies I have seen seem to address the issue of the ...
0
votes
1answer
159 views
How to use perl digest module to calculate CRC?
I need to implemenmt CRC-32 (with custom poly) in Perl.
I have seen that there is a module called digest::crc that does it.
However, when I compare the result to an online calculator, I dont get the ...
0
votes
1answer
70 views
Calculate reverse polynomial for given polynomial for calculating CRC
I am writing a javascript code for calculating the reverse polynomial from given generator polynomial but there seems to be some error it works great for few CRC method (CRC-8, CRC-16, CRC-CCITT, ...
3
votes
1answer
1k views
How to calculate CRC 16 with polynomial x16 + x12 + x5 + 1
I am trying to interface with some system and in their specs they require to calculate CRC 16 for serial communication. Here is an extract from documentation
"16 bit CCITT CRC of the message ...
1
vote
3answers
265 views
Python: CRC implementation using xor and shift registers
I was trying to implement 5-bit CRC with the CRC generator 100101.
However, this code doesn't reflect the hardware Xor and shift registers in CRC;
On the hardware level, we have the following :
How ...
2
votes
3answers
418 views
definitive CRC for C
Since CRC is so widely used, I'm surprised by having a hard time finding CRC implementations in C.
Is there a "definitive" CRC calculation snippet/algorithm for C, that "everyone" uses? Or: is there ...
0
votes
0answers
45 views
os.unlink error in robot framework/python
I use 'evaluate' keyword and the following python expression to get a file's crc:
${csum} Evaluate zlib.crc32(file('c:/temp/${newfname}', 'r').read()) zlib
But when I use move file/remove file ...
0
votes
1answer
133 views
CRC-24Q understanding found code
I am needing to add a CRC-24Q checksum to a RTCM message I am building. I have found some code from another source in C. However I cut/pasted into CodeBlocks to look it over. The compiler gives a ...
0
votes
1answer
135 views
How to create a 3-bit crc in C++?
http://en.wikipedia.org/wiki/Cyclic_redundancy_check#Computation_of_CRC
I tried to do that^^.. Using C++... Since it seemed basic I thought of doing it using an array....
This is my code[Inefficient ...
2
votes
2answers
245 views
Implement CRC algorithm from equation
I'm dealing with a device which say to use this 16 bit cyclic redundancy check:
CCITT CRC-16 with polynomial x^16 + x^12 + x^5 + x^1
I looked for an implementation of such algorithm, but I did find ...
0
votes
2answers
340 views
CRC8 checksum function translation from C# to VB.NET
I'm having a problem to translate following code from C# to VB.NET.
C# code
public static byte Crc8(byte[] data, int size) {
byte checksum = 0;
for (int i=0; i<=size; i++)
...
1
vote
1answer
191 views
How to determine checksum from decoded IR remotes
I have a small 3.5ch USeries helicopter controlled by an IR remote control, using an Arduino I have decoded its 32 bit protocol. Except for last 3 bits which appear to be some form of checksum. As I ...
1
vote
0answers
69 views
Why don't xlinker's sum and checksum match? (IAR 5.40)
I am using IAR 5.40 and xlink to generate the checksum. The generated checksum and calculated checksum don't match. Here is how my memory map looks like:
Symbol Checksum Memory Start End ...
0
votes
2answers
63 views
Simple error checking to replace repetition code in flash
I have a 16 bit field in flash memory in which to store an 8-bit number (more specifically, a value in the closed range from 0 to 254). I'd like to use the extra 8+ bits for error checking (error ...
2
votes
1answer
105 views
CRC check redundant when using encryption?
I am using AES for encryption and CRC to check data integrity and I have the impression that the CRC check is redundant in my case. I am doing the following:
Encryption:
Take the payload data and ...
0
votes
2answers
155 views
Probability of collision CRC32
In Database, I have a string key field with 10 characters in long. I've used CRC32 to hash this field but i'm worry about duplicating. Somebody could show me probability of collision in this ...
0
votes
2answers
40 views
Networking and CRC confusion
I am currently working on a project that requires data to be sent from A to B. Once B receives the data, it needs to be able to determine if an error occurred during transmission.
I have read about ...
1
vote
2answers
430 views
how to generate 8bit crc in php [duplicate]
Possible Duplicate:
CRC8-Check in PHP
Is there any good PHP 8bit CRC generation? I searched and I couldn't find any good source.
I've found a 16bit though:
function crc16($string) {
...
1
vote
1answer
979 views
different between CRC8 , CRC16 and CRC32?
I would like to know the difference and how to choose the polynomial generator for different crc ?
And in some C code they have look up table to compute crc and some of them do it by xor truth ...
1
vote
0answers
120 views
Python: binary string error simulation
I am currently writing a test for validating some error-correcting code:
inputData1 = "1001011011"
inputData2 = "1001111011"
fingerPrint1 = parityCheck.getParityFingerprint(inputData1)
...
1
vote
2answers
693 views
8-bit fletcher checksum of 16 byte data
I'm trying to implement a 8-bit fletcher checksum function.
My data will always be 17 byte long.
I started with code from Remake of Fletcher checksum from 32bit to 8
Here is what I ended up having ...
3
votes
1answer
241 views
Binary division issue: bad examples on internet or what am I missing?
I would like to create a 16 bit CRC. Actually I am entirely ready whit that, so a couple of hours ago I tested it, but did not work properly. But what I discovered is that the examples on the internet ...
2
votes
1answer
395 views
Sending 0xFF and Calculating CRC with signed bytes - WriteSingleCoil & ModBUS & Java & Android -
EDITED & SOVLED (below)
I'm using Java for Android trying to send the byte 255 (0xFF in WriteSingleCoil function) to a ModBUS server device.
Device is not runnig, I don't know if because of not ...
0
votes
2answers
358 views
Why is the Frame Check Sequence at the end of an Ethernet frame and not somewhere else
An Ethernet Frame Check Sequence is always appended to the end of a frame in the Data Link Layer. Why is it appended to the end of the frame and not somewhere else?
I thought about it and think it ...
1
vote
1answer
2k views
Convert C CRC16 to Java CRC16
Im currently working on on a project, having an embedded system sending data to a pc via radio. The packets get a crc16 checksum at then end and its calculated based on this algorithm:
uint16_t crc16 ...
0
votes
0answers
116 views
Java CRC error when using a dictionary with GZIP
This is honestly frustrating because I think I know the cause but at the same time I cannot pinpoint when it is happening in my code. Basically, for this assignment, we're supposed to read in an input ...
2
votes
1answer
107 views
What's CRC with 64b in and 32b out?
I'm developing a software utility to transfer some data to a pci-e board. To avoid the data transfer fault, I've add a CRC field in every packet, so that the pci-e board can verify the received data ...
1
vote
2answers
218 views
What if CRC bits have error in Ethernet Frame?
The Ethernet Frame consists of 32 CRC (Cyclic Redunancy Check) bits for checking errors. Won't there be a huge problem if the CRC bits themselves are changed but the message/payload is correct?
Is ...
0
votes
3answers
250 views
Why is there difference in this calculation of CRC16 in python?
i would say that this code would provide the same output three times but it does not:
import crcmod
#create CRC16 calculator
crc16 = crcmod.predefined.mkCrcFun('crc-16')
#wait for user input
#hstr ...
4
votes
2answers
351 views
Translate Delphi+Assembler CRC32 implementation to C#
I have to translate partially one old and large application from Delphi to .NET (C#).
Here is one strange (at least for me) implementation of CRC32:
function CRC32(CRC: LongWord; Data: Pointer; ...
0
votes
1answer
362 views
Calculating CRC example
Could someone please show me the steps in calculating this CRC code?
Generator polynomial G(x)=10
data:110
message with crc appended: 110
When the data is divided by G(x) then the remainder is 0. So ...

