这个CRC32方法的大端兼容版本会是什么样的?

时间:2011-04-29 02:11:59

标签: c++ endianness crc crc32

我正在开发一个项目,需要对正在传输的数据进行CRC32检查。我想使我的代码不仅适用于英特尔架构(“Little Endian”),也适用于Solaris架构(“Big Endian”)。我发现这个“CCRC32”对两个小端机器来说都很漂亮,但完全没有通过任何跨平台测试:

代码:

CCRC32.h & CCRC32.cpp (取自维基百科的“外部链接”)

http://en.wikipedia.org/wiki/Cyclic_redundancy_check

以下是代码的方法示例:

void CCRC32::PartialCRC(unsigned long *ulCRC, const unsigned char *sData, unsigned long ulDataLength) {
while(ulDataLength--) {
    //If your compiler complains about the following line, try changing each
    //occurrence of *ulCRC with "((unsigned long)*ulCRC)" or "*(unsigned long *)ulCRC".

     *(unsigned long *)ulCRC =
        ((*(unsigned long *)ulCRC) >> 8)
             ^ this->ulTable[((*(unsigned long *)ulCRC) & 0xFF) ^ *sData++];
}




unsigned long CCRC32::FullCRC(const unsigned char *sData, unsigned long ulDataLength) {
    unsigned long ulCRC = 0xffffffff; //Initilaize the CRC.
    this->PartialCRC(&ulCRC, sData, ulDataLength);
    return(ulCRC ^ 0xffffffff); //Finalize the CRC and return.
}

所以我的问题是:你们中的任何一位大端大师都知道如何调整上述方法来处理大端机器,或者有没有人知道可以实现我的目标的现有源代码?到目前为止,我的搜索都没有成功。

感谢您的时间,

詹姆斯

1 个答案:

答案 0 :(得分:2)

不确定它是否有帮助,但this piece of C code有大小版本。