473,763 Members | 1,320 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

CRC32

Don
Hi NG.

Does anyone know of a place where I could download/get a C implementation of
a CRC32 check.
I would like a simple function that, for example, had a pointer to where the
data to be CRC32 calculated reside, an indication of the length of the data
and perhaps the polynomium as input arguments and then would return the
calculated crc32 value like e.g. an unsigned long.

Don
Nov 13 '05
14 8790
In <Xn************ *************** *******@130.133 .1.4> "Mark A. Odell" <no****@embedde dfw.com> writes:
"Don" <no**@spam.dk > wrote in news:bg******** **@news.net.uni-c.dk:
Ok. Thank you all for your help. I need to implement this crc32 check in
a microcontroller and I have a program now that states:

#define POLYNOMIAL (unsigned long)0x04c11db7
What possible (practical) benefit is there to making this a #define
instead of a const var (e.g. const unsigned long polynomial = 0x04c11db7)?


You have forgotten static. And it's still better to spell it in upper
case, to point out that it isn't an ordinary variable.
Try finding the #define in your debugger by name.


Why would one want to do such a thing? You have the source code in
front of your eyes while using the debugger, don't you?

Dan
--
Dan Pop
DESY Zeuthen, RZ group
Email: Da*****@ifh.de
Nov 13 '05 #11
In article <bg**********@n ews.net.uni-c.dk>, no**@spam.dk says...
I would like to cross-check this with some program or similar. Does anyone
know of a program similar to:
http://www.smbus.org/faq/crc8Applet.htm
Making me capable of calculating the crc32 (instead of only crc8) of a
hexadecimal string?

Don


Btw, if you want a very efficient implementation, do a google search for
"Hacker's Delight". The website for this (very interesting) book has an
implementation of crc32 that is very well explained and along with that
is half a dozen or more implementations of it, each analyzed for
performance.

Nov 13 '05 #12

"Don" <no**@spam.dk > wrote in message news:bg******** **@news.net.uni-c.dk...
"Carsten Hansen" <ha******@world net.att.net> wrote in message
news:eA******** *************@b gtnsc04-news.ops.worldn et.att.net...

"Glenn C. Rhoads" <gc******@yahoo .com> wrote in message
news:33******** *************** ***@posting.goo gle.com...
"Arthur J. O'Dwyer" <aj*@andrew.cmu .edu> wrote in message news:<Pi******* *************** *************@u nix44.andrew.cm u.edu>...
> On Wed, 30 Jul 2003, Mark A. Odell wrote:
>>
>> Pieter Droogendijk <gi*@binky.home unix.org> wrote...
>>>
>>> http://remus.rutgers.edu/~rhoads/Code/crc-32b.c
>>
>> I grabbed this and was confused by this function's use of 'int char'. >>
>> unsigned long get_crc( FILE *fp) /* calculate the crc value */
>> {
>> register unsigned long crc;
>> int char; <------------------ NOTE
>>
>> crc = 0xFFFFFFFF;
>> while ((char = getc(fp)) != EOF)
>> crc = ((crc>>8) & 0x00FFFFFF) ^ crc_table[ (crc^char) & 0xFF ]; >>
>> return( crc^0xFFFFFFFF );
>> }
>>
>> What's with the NOTE'd line. Could someone really have published a
>> function with this sort of error?
>
> Yes. :) That is absolutely ridiculous. Maybe the OP should look
> somewhere else for more reliable code, since this was obviously
> never tested in a real program.
>
> The lines
>
> #ifndef FILE /* if FILE type not defined */
> #include <stdio.h> /* then bring it in */
> #endif
>
> should also have raised several red flags. I'm going to mail
> the guy right away and point it out.
>
> http://www.google.com/search?q=crc32+ c+source&btnI=I 'mFeelingLucky
>
> -Arthur

From my email response:
The line "int char" is *not* a syntax error! In fact there is a very
good reason for using a variable of type "int" instead of "char." The
function "getc" can return any value from the character set *plus*
the special non-character value EOF. According to the C standard, the
type "char" is guaranteed to contain enough bits to hold all of the
values corresponding to the machine's character set; it is *not*
guaranteed to be able to hold the additional EOF value (without
possibly mixing up EOF with some actual character value). Thus, to
ensure that the code works across all implementations , you need to
declare the variable as an "int" instead of a "char." For
portability reasons, it is good practice to always declare character
data as type "int" except when you are declaring an array of
characters.
> (Also, the lines
>
> #ifndef FILE
> #include <stdio.h>
> #endif
>
> are suspicious; the #ifndef and #endif directives
> are completely useless and irrelevant there.)

I disagree with this claim too. There are two distinct methods of
making use of this crc code as part of a system library. First, you
may want to compile the crc code separately to generate an object
file only and then make the object file available as part of your
library while hiding the actual source code. Alternatively, you may
want to make the actual source code available and have the user
compile their source code and the crc source code together at once.
To use the first method, you need to include "stdio.h" so the
compiler will not complain about the type "FILE." But if include
"stdio.h" without the preprocessor directives #ifndef and #endif,
then you will run into a problem using the second method if your own
source code file also includes "stdio.h." Since I cannot know in
advance which method someone might use, I used the above method
to let you to use either method without running into a problem.
Having the #ifndef and #endif directives will not hurt you if your
preferred method does not need them.

The problem with
>> int char; <------------------ NOTE

is that char is a keyword. You cannot use it as an identifier for a
variable.

The problem with
> #ifndef FILE
> #include <stdio.h>
> #endif

is that FILE is not a macro. Hence it is not defined during the

preprocessor
stage of compilation, no matter whether <stdio.h> has previously been
included or not.
Moreover, the C standard explicitly allows a standard header to be

included
multiple times "with no effect different from being included only once".

So,
basically you have a wrong solution to a non-existing problem.

Finally, the masking in
>> crc = ((crc>>8) & 0x00FFFFFF) ^ crc_table[ (crc^char) &

0xFF ];
is superfluous. Right shifting of an unsigned is guaranteed to fill the
vacated bits with zeros.
Carsten Hansen

Ok. Thank you all for your help. I need to implement this crc32 check in a
microcontroller and I have a program now that states:

#define POLYNOMIAL (unsigned long)0x04c11db7

static unsigned long crc_table[256];

static void make_crc_table( ) {
unsigned int i, j;
unsigned long h = 1;
crc_table[0] = 0;
for (i = 128; i; i >>= 1) {
h = (h >> 1) ^ ((h & 1) ? POLYNOMIAL : 0);
/* h is now crc_table[i] */
for (j = 0; j < 256; j += 2*i)
crc_table[i+j] = crc_table[j] ^ h;
}
}
unsigned long crc32(unsigned long crc, char const *buf, unsigned int len)

{ if (crc_table[255] == 0)
make_crc_table( );
crc ^= 0xffffffff;
while (len--)
crc = (crc >> 8) ^ crc_table[(crc ^ *buf++) & 0xff];
return crc ^ 0xffffffff;
}
main(){
unsigned char temp[10];
unsigned long mycrc;

temp[0] = 0x55;
temp[1] = 0x77;
temp[2] = 0x78;
temp[3] = 0x45;
temp[4] = 0x89;
temp[5] = 0x03;
temp[6] = 0x89;
temp[7] = 0x87;
temp[8] = 0x65;
temp[9] = 0x91;

mycrc = crc32(mycrc,tem p,10);

}

This gives me mycrc = 0xfe7c9148

I would like to cross-check this with some program or similar. Does anyone
know of a program similar to:
http://www.smbus.org/faq/crc8Applet.htm
Making me capable of calculating the crc32 (instead of only crc8) of a
hexadecimal string?

Don


Your program has undefined behavior. You never initialize mycrc.
There are many variations on CRC. The one you are using here is not the most
common.
Usually one uses the reflected polynomial (0xEDB88320) to the one you are
using here.
Here are some references:
Michael Barr (mb***@netrino. com)
Wrote Easier Said Than Done, a less-confusing guide to implementing CRC
algorithms. (Originally published as "Slow and Steady Never Lost the Race"
in the January 2000 issue of Embedded Systems Programming, pages 37-46.)
Ross N. Williams
Wrote A Painless Guide to CRC Error Detection Algorithms, a definitive
source of CRC information.

Carsten Hansen
Nov 13 '05 #13
bd
On Wed, 30 Jul 2003 17:41:47 -0700, Glenn C. Rhoads wrote:
"Arthur J. O'Dwyer" <aj*@andrew.cmu .edu> wrote in message news:<Pi******* *************** *************@u nix44.andrew.cm u.edu>...
On Wed, 30 Jul 2003, Mark A. Odell wrote:

Pieter Droogendijk <gi*@binky.home unix.org> wrote...

http://remus.rutgers.edu/~rhoads/Code/crc-32b.c

I grabbed this and was confused by this function's use of 'int char'.

unsigned long get_crc( FILE *fp) /* calculate the crc value */
{
register unsigned long crc;
int char; <------------------ NOTE

crc = 0xFFFFFFFF;
while ((char = getc(fp)) != EOF)
crc = ((crc>>8) & 0x00FFFFFF) ^ crc_table[ (crc^char) & 0xFF ];

return( crc^0xFFFFFFFF );
}

What's with the NOTE'd line. Could someone really have published a
function with this sort of error?
Yes. :) That is absolutely ridiculous. Maybe the OP should look
somewhere else for more reliable code, since this was obviously
never tested in a real program.

The lines

#ifndef FILE /* if FILE type not defined */
#include <stdio.h> /* then bring it in */
#endif

should also have raised several red flags. I'm going to mail
the guy right away and point it out.

http://www.google.com/search?q=crc32+ c+source&btnI=I 'mFeelingLucky

-Arthur


From my email response:
The line "int char" is *not* a syntax error! In fact there is a very
good reason for using a variable of type "int" instead of "char." The
function "getc" can return any value from the character set *plus*
the special non-character value EOF. According to the C standard, the
type "char" is guaranteed to contain enough bits to hold all of the
values corresponding to the machine's character set; it is *not*
guaranteed to be able to hold the additional EOF value (without
possibly mixing up EOF with some actual character value). Thus, to
ensure that the code works across all implementations , you need to
declare the variable as an "int" instead of a "char." For
portability reasons, it is good practice to always declare character
data as type "int" except when you are declaring an array of
characters.


The question is of whether 'char' is a legal variable name, I think.
(Also, the lines

#ifndef FILE
#include <stdio.h>
#endif

are suspicious; the #ifndef and #endif directives
are completely useless and irrelevant there.)
I disagree with this claim too. There are two distinct methods of
making use of this crc code as part of a system library. First, you
may want to compile the crc code separately to generate an object
file only and then make the object file available as part of your
library while hiding the actual source code. Alternatively, you may
want to make the actual source code available and have the user
compile their source code and the crc source code together at once.
To use the first method, you need to include "stdio.h" so the
compiler will not complain about the type "FILE." But if include
"stdio.h" without the preprocessor directives #ifndef and #endif,
then you will run into a problem using the second method if your own
source code file also includes "stdio.h."


No. Including stdio.h twice is harmless, and FILE may be a typedef, or
some sort of internal compiler magic, not a #define. As such, the #ifndef
is useless.
Since I cannot know in
advance which method someone might use, I used the above method
to let you to use either method without running into a problem.
Having the #ifndef and #endif directives will not hurt you if your
preferred method does not need them.


--
Freenet distribution not available
We were so poor we couldn't afford a watchdog. If we heard a noise at night,
we'd bark ourselves.
-- Crazy Jimmy

Nov 13 '05 #14
bd
On Fri, 01 Aug 2003 06:35:59 -0700, Glenn C. Rhoads wrote:
"Arthur J. O'Dwyer" <aj*@andrew.cmu .edu> wrote in message news:<Pi******* *************** **************@ unix46.andrew.c mu.edu>...
On Thu, 31 Jul 2003, Glenn C. Rhoads wrote:

"Carsten Hansen" <ha******@world net.att.net> wrote...
> "Glenn C. Rhoads" <gc******@yahoo .com> wrote in message [I wrote:]
>> (Also, the lines
>>
>> #ifndef FILE
>> #include <stdio.h>
>> #endif
>>
>> are suspicious; the #ifndef and #endif directives
>> are completely useless and irrelevant there.)
>
> I disagree with this claim too.

The problem with
>> #ifndef FILE
>> #include <stdio.h>
>> #endif
is that FILE is not a macro. Hence it is not defined during the
preprocessor stage of compilation, no matter whether <stdio.h> has
previously been included or not.

Yes.

Moreover, the C standard explicitly allows a standard header to be
included multiple times "with no effect different from being included
only once". So, basically you have a wrong solution to a non-existing
problem.

I guess you've never run into a traditional K&R compiler. With such
a compiler, you cannot bring in header files more than once.


As a matter of fact, since K&R C didn't use the standard headers, the
line #include <stdio.h> would probably cause a significant percentage
of pre-ANSI compiler to barf entirely. And, of course, no K&R C compiler
would get beyond

void gen_table(void)

without producing some *very* interesting error messages.


Mine worked fine without a single error message.


Then you're not using a K&R C compiler, are you?
This
code was written several years ago when the above was standard usage
because back then, you could reasonably run into a K&R compiler and
there is no other good way to do it on such a compiler. And it still
works on a modern ansi-C compiler.


Unfortunately, the "fix" now posted at
http://remus.rutgers.edu/~rhoads/Code/crc-32b.c
is even worse than the original.

While the original #ifndef was valid, if silly and useless,
the new version reads

#ifndef _PRINTF_H /* defined in stdio.h */
#include <stdio.h>
#endif

which is absolutely ridiculous! No compiler will #define _PRINTF_H
for you,


This is defined at the top of "stdio.h"


Maybe on your system. I just compiled:

#include <stdio.h>
#ifdef _PRINTF_H
#error _PRINTF_H defined
#else
#error _PRINTF_H not defined
#endif

And got:
foo.c:5:2: #error _PRINTF_H not defined
There are two c compilers available on the system I most commonly use,
Sun's cc compiler and the Gnu-c compile (gcc). To double check, I just
tested the above on both of them and it worked correctly. So much for
the claim that no compiler will do this.


They don't. However, stdio.h may be #included more then once.
and no user can safely #define _PRINTF_H for you, either,
because that identifier is "reserved for any use" by the Standard.

I repeat, the correct C89 (ANSI C) solution is

#include <stdio.h>

And that doesn't work on every compiler I have access to
(it does on Sun's cc compiler and the gnu-c compiler).


Which don't they work on?
and the correct K&R solution is (a) to get rid of all those 'void'
keywords (and maybe that 'register unsigned long', although in the
absence of my K&R1 I'll let Dan or somebody handle that), and
(b) to let the client worry about it.

-Arthur


You are free to get rid of the #defines if you wish but I refuse
to change what works on every compiler I have access to, to something
that works on most but all of them.


--
Freenet distribution not available
BOFH Excuse #72:

Satan did it

Nov 13 '05 #15

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
4352
by: Ricky Romaya | last post by:
Hi, I'm working on a file upload script. I need to calculate the CRC32 of the file(s) which are successfully uploaded. How can I do this? PHP only have CRC32 function for strings. However, the uploaded file(s) are mostly binaries, and assumed have large size (5-12 MB per file). Are there any ways other than CRC32 (which supported by default PHP installation) to generate a unique hash of an arbitrary files? (the users of my script are...
1
10041
by: PaullyB | last post by:
Hi, I am attempting to convert the following code written in c to equivalent java code. This is the CRC32 algorithm used by a GPS received I am interfacing with. Unfortunately, the CRC32 class provided in the java API does not suit my needs because it does not allow manipulation of the polynomial being used. Below is the original c-code followed by my attempt to convert the code to java. Unfortunately, my code does not produce the...
2
3420
by: nobody | last post by:
1) Does anyone know if the CRC32 algorithm in binascii has a name? There seem to be a TON of different CRC32 methods; different polynomials, different byte orders, different seeds, some flip the bits and some XOR the result with something else. I've been looking around and a lot of documents (RFCs, etc) refer to ISO3309 and/or ITU-T V.42 (neither of which appear to be available without paid access), yet are often incompatible with each...
6
5835
by: Weiguang Shi | last post by:
Hi there, I'm thinking of using binascii.crc32 as a hash-function when I read in the reference http://www.python.org/doc/current/lib/module-binascii.html: crc32( data) Compute CRC-32, the 32-bit checksum of data, starting with an initial crc. This is consistent with the ZIP file checksum.
0
1398
by: Michael--J | last post by:
Hi, I've written a CRC32 algorithm in C# and i need to use it when sending data over over a network. The CRC32 algorithm i am using has a poly of 0x04C11DB7, initial value of 0xFFFFFFFF, and a 'XOR out with' of 0xFFFFFFFF. I use a test client and server to send data to each other. Say i want to send 50 bytes of data from the client to the server. The client reserves the last 4 bytes of the 50 byte packet for the CRC. It calculates the...
9
10852
by: UnixUser | last post by:
I am looking for some source code to run on Linux that will enable me to calculate and return a CRC32 value from a string of text. I have found one from snippets.org, but I cannot get it to compile. Please help me find something that is simple to install, includes all header and language files and that will compile.
6
4392
by: Paul M. | last post by:
Hello, does anyone have either a User Function Library (or the source for one) to create a CRC32 checksum for a given string? I want to use the function in a crystal formula thus: formula = CRC32("123456789") This would then display on the report the CRC32 checksum for "123456789".
12
9872
by: Larry Bates | last post by:
I'm trying to get the results of binascii.crc32 to match the results of another utility that produces 32 bit unsigned CRCs. binascii.crc32 returns results in the range of -2**31-1 and 2**21-1. Has anyone ever worked out any "bit twiddling" code to get a proper unsigned 32 bit result from binascii.crc32? Output snip from test on three files: binascii.crc32=-1412119273, oldcrc32= 2221277246
2
3946
by: tlsk | last post by:
Hi I need to calculate the crc32 value for an unsigned array in C++.It goes like this.. unsigned char Myarray; //Myarray contains hex value ... b525b4d0ad533acee2d6a214453a279e Need to calculate the crc32 value for this Myarray. ------------------------------------------------------------------------------------------
0
9386
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10145
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9938
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8822
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6642
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5270
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5406
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
3523
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2793
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.