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 need to be able to reproduce this check character for any given identifier.

I am fairly certain this will be a custom/proprietary algorithm given the lack of I and O for easy readability however how would go about trying to reverse engineer it given the large sample of identifiers I have?

For example:

A070511 = B

B070511 = D

B070567 = N

B080567 = R

link|improve this question
1  
Need more examples... 50 or so might be enough, but more won't hurt. – Mark Byers Nov 13 '11 at 0:55
Keep in mind that to catch simple digit reversals it's common to treat every other digit differently. See, for instance, the Luhn algorithm. – Hot Licks Nov 13 '11 at 1:03
One general approach is to guess enough, the mapping of characters to numbers, or the way mapped characters are combined, to reduce the problem to one that can be solved by solving a set of linear equations mod N, for some N. Having 24 different output characters is a bit funny, but maybe you could get started by considering only the low order bit and working mod 2. I wonder if a more general question could avoid being closed? I have spent enough time fiddling around to get documented checksums interoperable to suggest that you are not the only one with this sort of problem. – mcdowella Nov 13 '11 at 17:43
feedback

closed as too localized by Kev Nov 13 '11 at 0:59

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

Browse other questions tagged or ask your own question.