mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
95 lines
2.3 KiB
C++
95 lines
2.3 KiB
C++
//
|
|
// FILE: Fletcher.cpp
|
|
// AUTHOR: Rob Tillaart
|
|
// VERSION: 0.1.6
|
|
// 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
|
|
// 0.1.4 2022-09-08 performance optimization (Kudos to Daniel Mohr).
|
|
// affects SAMD, ESP32 and ESP8266
|
|
// fix FLETCHER_LIB_VERSION
|
|
// 0.1.5 2022-09-08 roll back the optimizations in the standalone functions
|
|
// conflict with loop optimization already in.
|
|
// update keywords.txt
|
|
// 0.1.6 2022-09-10 stabilize optimizations
|
|
|
|
|
|
#include "Fletcher.h"
|
|
|
|
|
|
//
|
|
// 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;
|
|
}
|
|
// this optimization does not work due to the above "32-bit" loop.
|
|
// for all three functions.
|
|
// s1 = (s1 & 255) + (s1 >> 8);
|
|
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 --
|
|
|
|
|