Not sure where this question should go.
Has anyone heard of a mod10 check in
Java? Perhaps a class already exists that handles the logic.
Modulus 10 for those who are unfamiliar is a format check for credit card numbers. It does not authorize dollar amounts or even check if the account is active. All it does is perform a complicated algorithm on the credit card number to see if it is valid. Example '1111 1111 1111 1111' would fail. There are certain
patterns that must exist in a CC number for it to pass mod10.
Thanks in advance.