CRC32
I need to find a way to duplicate java's CRC32 implementation for C# in Microsoft Visual Studio. Does anyone know of a way to do this? There are other CRC32 implementation out there but none that give the result that I need.
[232 byte] By [
Moses84a] at [2007-11-27 8:34:04]

# 2
thanks, I know that all the implementation do the same thing. I am looking for the value of the polynomial. I've tried several other crc32 and they all come out to the same value that is different fromt the value that the java polynomial uses. Java ends up being in the 20........ and the other implementations produce a number in the 19.......... I don't have them on me right now to tell you the exact numbers being produced. Is there anyway I can find out the polynomial value? and possible the seed value?
# 3
For some reason the Java CRC 32 polynomial isn't specified, which is pretty incredible, but it is 0xedb88320UL, and the initial value is zero.
ejpa at 2007-7-12 20:30:15 >

# 6
oh, I need to explain myself more when I post to this thing. When I looked at the source code, I just found a call to a native method, but couldn't find the native method. What I meant to ask was where in the source code did you find it? was there another level that I just didn't see?