GY-63_MS5611/libraries/LUHN
2024-04-13 10:35:57 +02:00
..
.github bulk update GitHub actions 2024-04-13 10:35:57 +02:00
examples 0.2.1 LUHN 2023-10-26 17:14:51 +02:00
test 0.2.0 LUHN 2023-05-09 13:23:32 +02:00
.arduino-ci.yml 0.1.0 LUHN 2022-12-29 16:15:53 +01:00
CHANGELOG.md 0.2.1 LUHN 2023-10-26 17:14:51 +02:00
keywords.txt 0.2.1 LUHN 2023-10-26 17:14:51 +02:00
library.json 0.2.1 LUHN 2023-10-26 17:14:51 +02:00
library.properties 0.2.1 LUHN 2023-10-26 17:14:51 +02:00
LICENSE bulk update GitHub actions 2024-04-13 10:35:57 +02:00
LUHN.cpp 0.2.1 LUHN 2023-10-26 17:14:51 +02:00
LUHN.h 0.2.1 LUHN 2023-10-26 17:14:51 +02:00
README.md 0.2.1 LUHN 2023-10-26 17:14:51 +02:00

Arduino CI Arduino-lint JSON check GitHub issues

License: MIT GitHub release PlatformIO Registry

LUHN

Arduino Library for calculating LUHN checksum.

Description

The LUHN algorithm is a checksum (a.k.a. mod 10) invented by Hans Peter Luhn in 1960. It is used to validate a variety of product ID's to detect typing errors an/of digit swaps. So it is not to secure a number but to prevent common mistakes when entering a code in a system. The LUHN check uses very few resources and is pretty fast.

Basic idea is to put all digits-1 through the formula and the output should equal the last digit.

This LUHN library also includes a "stream" based LUHN calculation, in which digits can be add one at a time (from a stream) and it will return the LUHN checksum so far. This is a new application as LUHN depends on the length of the input being odd or even. To handle this two values are maintained (for odd and even lengths) and the correct one is returned.

Maintaining two checksums makes the stream add(c) algorithm substantial slower (~4x) than the normally used generateChecksum(buffer) or the isValid(buffer). However that is a small price for the new functionality.

The amount of data that can be added in stream mode is infinite in theory. However that is not tested for obvious reasons, internally a 32 bit counter exists.

Notes

  • some LUHN validations uses the reversed product string.
  • 0.1.x versions are obsolete due to incorrect math.

Interface

#include "LUHN.h"
  • LUHN() constructor
  • bool isValid(char * buffer ) validates the code in the parameter buffer. The parameter buffer is a '\0' terminated char array. Length should be less than 254.
  • bool isValid(const char * buffer ) idem.
  • char generateChecksum(char * buffer) Returns the char '0'..'9' which is the checksum of the code in the parameter buffer. The parameter buffer is a '\0' terminated char array. Length should be less than 254.
  • char generateChecksum(const char * buffer) idem.
  • bool generate(char * buffer, uint8_t length, char * prefix) Generates a char array including LUHN number with a defined prefix of max length. Returns false if the prefix exceeds length -1.

Stream

  • char add(char c) add char, returns LUHN so far.
  • char reset() return last LUHN.
  • uint32_t count() return internal counter. If this value is zero, a new LUHN can be calculated, otherwise call reset() first.

The internal counter for the stream interface is 32 bit. This limits the number of add() calls to about 4 billion. For current implementation the counter is used for even/odd detection, and even when it overflows one gets the correct LUHN.

Future

Must

Should

  • look for optimizations
    • common code isValid() and generateChecksum()

Could

Won't (unless)

  • create a HEX equivalent of LUHN
    • LUHN16 ?
    • easy to enter HEX code with verify / line.
    • mod N configurable so not only 10 but any N?
  • uint64_t interface for up to 17 digits.
    • expensive on small processors.
  • uint32_t interface for up to 8 digit ID's (99.999.999)
    • isValid(uint32_t)
    • generateChecksum(uint32_t)
    • how about leading zero's

Support

If you appreciate my libraries, you can support the development and maintenance. Improve the quality of the libraries by providing issues and Pull Requests, or donate through PayPal or GitHub sponsors.

Thank you,