2022-04-15 17:36:01 +02:00

92 lines
2.0 KiB
C++

//
// FILE: Fletcher.cpp
// AUTHOR: Rob Tillaart
// VERSION: 0.1.3
// DATE: 2022-01-25
// PURPOSE: Arduino Library for calculating Fletcher's checksum
// URL: https://github.com/RobTillaart/Fletcher
// https://en.wikipedia.org/wiki/Fletcher%27s_checksum
//
// HISTORY
// 0.1.0 2022-01-25 initial version, straightforward implementation
// 0.1.1 2022-01-26 optimize % math variation based upon to Anastase Nakassis (wikipedia)
// 0.1.2 2022-01-26 add class implementation e.g. for streaming
// 0.1.3 2022-04-15 fix #4 split .h in .h and .cpp
#include "Arduino.h"
#define FLETCHER_LIB_VERSION (F("0.1.2"))
#define FLETCHER_16 255
#define FLETCHER_32 65535UL
#define FLETCHER_64 4294967295ULL
//
// straightforward implementation.
// max length buffer 65534.
// Wikipedia shows optimizations.
//
uint16_t fletcher16(uint8_t *data, uint16_t length)
{
uint32_t s1 = 0;
uint32_t s2 = 0;
for (uint16_t i = 0; i < length;)
{
// if S2 is halfway it is time to do modulo
while ((i < length) && (s2 < 2147483648ULL))
{
s1 += data[i++];
s2 += s1;
}
s1 %= FLETCHER_16;
s2 %= FLETCHER_16;
}
return (s2 << 8) | s1;
}
uint32_t fletcher32(uint16_t *data, uint16_t length)
{
uint32_t s1 = 0;
uint32_t s2 = 0;
for (uint16_t i = 0; i < length;)
{
// if S2 is halfway it is time to do modulo
while ((i < length) && (s2 < 2147483648ULL))
{
s1 += data[i++];
s2 += s1;
}
s1 %= FLETCHER_32;
s2 %= FLETCHER_32;
}
return (s2 << 16) | s1;
}
uint64_t fletcher64(uint32_t *data, uint16_t length)
{
uint64_t s1 = 0;
uint64_t s2 = 0;
for (uint16_t i = 0; i < length;)
{
// if S2 is halfway it is time to do modulo
while ((i < length) && (s2 < 9223372036854775808ULL))
{
s1 += data[i++];
s2 += s1;
}
s1 %= FLETCHER_64;
s2 %= FLETCHER_64;
}
return (s2 << 32) | s1;
}
// -- END OF FILE --