📄 crc32.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -