bsnes/nall/hash/crc32.hpp

51 lines
967 B
C++

#pragma once
#include <nall/hash/hash.hpp>
namespace nall { namespace Hash {
struct CRC32 : Hash {
nallHash(CRC32)
auto reset() -> void override {
checksum = ~0;
}
auto input(uint8_t value) -> void override {
checksum = (checksum >> 8) ^ table(checksum ^ value);
}
auto output() const -> vector<uint8_t> {
vector<uint8_t> result;
for(auto n : rrange(4)) result.append(~checksum >> n * 8);
return result;
}
auto value() const -> uint32_t {
return ~checksum;
}
private:
static auto table(uint8_t index) -> uint32_t {
static uint32_t table[256] = {0};
static bool initialized = false;
if(!initialized) {
initialized = true;
for(auto index : range(256)) {
uint32_t crc = index;
for(auto bit : range(8)) {
crc = (crc >> 1) ^ (crc & 1 ? 0xedb8'8320 : 0);
}
table[index] = crc;
}
}
return table[index];
}
uint32_t checksum = 0;
};
}}