Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
2k views

Generating Luhn Checksums

There are lots of implementations for validating Luhn checksums but very few for generating them. I've come across this one however in my tests it has revealed to be buggy and I don't understand the ...
2
votes
0answers
92 views

Reverse Engineer A Check Sum Calculation Algorithm [closed]

I have a large sample of identifiers consisting of 1 number or 1 letter (month number 1-9,A,B,C), 2 numbers (month day), 4 digits and then finally an alphabetic check character (excluding I and O) - I ...
2
votes
2answers
315 views

Correct permutation cycle for Verhoeff algorithm

I'm implementing the Verhoeff algorithm for a check digit scheme, but there seems to be some disagreement in web sources as to which permutation cycle should form the basis of the permutation table. ...
1
vote
2answers
260 views

API in Java or C++ to read MRZ Travel Document(passport) code

I am looking around for an API in java or c++ to read the MRZ and decode the MRZ code in travel documents(passports). More information on MRZ is at ...
1
vote
1answer
317 views

Checkdigit algorithm Luhn mod N vs simple sum

Do you know why the Luhn mod N algoritm in order to create the check digit performs a sum by doubling the value of each even placed char instead of perfoming a simple sum of all chars? In pseudo-code ...
0
votes
1answer
110 views

How is a check digit calculation done in Ruby?

I'm trying to build a check-digit calculation in Ruby for FedEx tracking numbers. Here is info and the steps for the check-digit calculation: Digit positions are labeled from right to left. Digit 1 ...
0
votes
2answers
177 views

Optimizing the Verhoeff Algorithm in R

I have written the following function to calculate a check digit in R. verhoeffCheck <- function(x) { ## calculates check digit based on Verhoeff algorithm ## note that due to the way strsplit ...
0
votes
2answers
958 views

mod 11 check digit with regex

Is it possible to create a mod 11 check digit routine with a regex statement? THe nubmer is a 10 digit number, Step 1: A = (2nd number * 2) + (3rd number * 4) + (4th number * 8) + (5th number * 5) + ...
0
votes
3answers
937 views

USPS ACS Keyline Check Digit

I have implemented the "MOD 10" check digit algorithm using SQL, for the US Postal Service Address Change Service Keyline according to the method in their document, but it seems I'm getting the wrong ...
-3
votes
1answer
340 views

Get check digit (Mod 11) implementation in c# [closed]

Can anyone give me the code in C#... for getting the Verification Digit with Mod11? Thanks. public class Mod11 { public static string AddCheckDigit(string number); } Example: ...