c – 这个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.
}

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

感谢您的时间,

詹姆士

解决方法

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

相关文章

本程序的编译和运行环境如下(如果有运行方面的问题欢迎在评...
水了一学期的院选修,万万没想到期末考试还有比较硬核的编程...
补充一下,先前文章末尾给出的下载链接的完整代码含有部分C&...
思路如标题所说采用模N取余法,难点是这个除法过程如何实现。...
本篇博客有更新!!!更新后效果图如下: 文章末尾的完整代码...
刚开始学习模块化程序设计时,估计大家都被形参和实参搞迷糊...