#numbers #checksum #algorithm #digit

no-std verhoeff

The Verhoeff algorithm, for number checksums

1 stable release

1.0.0 Jan 3, 2022

#1790 in Algorithms

Download history 1936/week @ 2023-12-04 1934/week @ 2023-12-11 1897/week @ 2023-12-18 1446/week @ 2023-12-25 1751/week @ 2024-01-01 4052/week @ 2024-01-08 2272/week @ 2024-01-15 1988/week @ 2024-01-22 1809/week @ 2024-01-29 1696/week @ 2024-02-05 2414/week @ 2024-02-12 1723/week @ 2024-02-19 2213/week @ 2024-02-26 2357/week @ 2024-03-04 1773/week @ 2024-03-11 2151/week @ 2024-03-18

8,608 downloads per month
Used in rs-matter

BlueOak-1.0.0 OR MIT OR Apache-2.0

12KB
189 lines

The Verhoeff algorithm, for number checksums

An implementation of the Verhoeff algorithm.

This checksum algorithm is not particularly common (the simpler and somewhat inferior Luhn algorithm is much more widely used, e.g. in credit card numbers), but it definitely gets some use; for example, India’s Aadhaar biometric identity system uses 12-digit numbers as the ID number, with the final digit being a Verhoeff checksum.

Background reading: https://en.wikipedia.org/wiki/Verhoeff_algorithm


Examples

use verhoeff::Verhoeff;
assert_eq!("12345".calculate_verhoeff_check_digit(), 1);
assert!(verhoeff::validate(&[1, 2, 3, 4, 5, 1]));
assert!(!"123456".validate_verhoeff_check_digit());

use verhoeff::VerhoeffMut;
let mut digits = vec![1, 2, 3, 4, 5];
digits.push_verhoeff_check_digit();
assert_eq!(digits, [1, 2, 3, 4, 5, 1]);

Cargo.toml usage and features

Standard:

[dependencies]
verhoeff = "1"

Disabling the std feature to get #![no_std], but retaining alloc in order to not lose any functionality:

[dependencies]
verhoeff = { version = "1", default-features = false, features = ["alloc"] }

Disabling the std feature without reenabling alloc, thereby losing the implementations of VerhoeffMut (push_verhoeff_check_digit) for String and Vec<u8>:

[dependencies]
verhoeff = { version = "1", default-features = false }

No runtime deps

Features