微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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有大小版本.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐