crc32.h

来自「Jpeg编解码器的源代码」· C头文件 代码 · 共 43 行

H
43
字号
#ifndef CB__CRC32_H
#define CB__CRC32_H
//
//  Title:  Crc32 Class Definition
//
//  Copyright 1999, Colosseum Builders, Inc.
//  All rights reserved.
//
//  Colosseum Builders, Inc. makes no warranty, expressed or implied
//  with regards to this software. It is provided as is.
//
//  Author:  John M. Miano (miano@colosseumbuilders.com)
//
//  Date:    March 20, 1999
//
//  Version: 1
//
//  Description:
//
//    This is the definition of the Crc32 class. The Crc32 class
//    is generated from a template.
//
//    
//
//    CRC Size: 32 Bits
//    CRC Polynomial:  0x04C11DB7
//    Reversed: true
//    Initial CRC Register Value: FFFFFFFF
//    Final CRC XOR Value: FFFFFFFF
//
//  Revision History:
//
//

#include "crc.h"

namespace Colosseum
{
template class Crc<32, 0x04C11DB7, true, 0xFFFFFFFF, 0xFFFFFFFF> ;
typedef Crc <32, 0x04C11DB7, true, 0xFFFFFFFF, 0xFFFFFFFF> Crc32 ;
}
#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?