CRC32 チェックサム計算ユーティリティ
[詳解]
#include <boost/crc.hpp>
#include <iomanip>
[ソースコード]
CRC32 チェックサム計算ユーティリティ
Boost.CRC を使用して文字列の CRC32 チェックサムを計算します。
crc32.h に定義があります。
◆ calculateCRC32()
| std::string calculateCRC32 |
( |
std::string | data | ) |
|
文字列の CRC32 チェックサムを計算する
- 引数
-
- 戻り値
- 8桁ゼロ埋め16進数形式の CRC32 チェックサム文字列(例: "1a2b3c4d")
crc32.h の 17 行目に定義があります。