bsnes/nall/hash/crc16.hpp

51 lines
971 B
C++

#pragma once
#include <nall/hash/hash.hpp>
namespace nall { namespace Hash {
struct CRC16 : Hash {
nallHash(CRC16)
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> override {
vector<uint8_t> result;
for(auto n : rrange(2)) result.append(~checksum >> n * 8);
return result;
}
auto value() const -> uint16_t {
return ~checksum;
}
private:
static auto table(uint8_t index) -> uint16_t {
static uint16_t table[256] = {0};
static bool initialized = false;
if(!initialized) {
initialized = true;
for(auto index : range(256)) {
uint16_t crc = index;
for(auto bit : range(8)) {
crc = (crc >> 1) ^ (crc & 1 ? 0x8408 : 0);
}
table[index] = crc;
}
}
return table[index];
}
uint16_t checksum = 0;
};
}}