Tagged Questions
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
93 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
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
112 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 ...
-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:
...