Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
5answers
147 views

PHP client PIN security

I'm currently developing a system which has a functionality where clients can view details of their purchases/renewals/etc by supplying a PIN "number". A PIN is being used instead of login ...
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 ...
4
votes
5answers
428 views

Does anyone know where there is c# code or a dll which can generate sample credit card numbers

For an application we are working on I need to generate sample credit card numbers which pass the Luhn algorithm but which are also unique, so we cannot use the sample credit card numbers. We need to ...
4
votes
3answers
487 views

Client-side verification of credit cards

Does anyone have a library or JavaScript snippet to verify the check digit of credit cards before the user hits Submit?
2
votes
1answer
115 views

Luhn or Verhoeff algorithm for credit card numbers

First of all, I'm not really sure if this should be on stackoverflow but I thought I would try to ask anyway. In the past I have always used the luhn algorithm for error checking in credit card ...
2
votes
4answers
213 views

Identify card type from card number

i have an array of card types that looks something like this var cards = new Array(); cards [0] = {name: "VISA", length: "13,16", prefixes: "4", checkdigit: true}; cards [1] = {name: ...
1
vote
3answers
129 views

Chunk a string every odd and even position

I know nothing about javascript. Assuming the string "3005600008000", I need to find a way to multiply all the digits in the odd numbered positions by 2 and the digits in the even numbered positions ...
0
votes
2answers
60 views

difficult insert

I am using mysql/php. my table looks like id (int autoincrement) voucher(varchar 25) I am generating voucher codes where the code is: 1 random number (eg 64) 1 fixed number (eg 352) value of ...
0
votes
1answer
371 views

JavaScript luhn check

apologies in advance, i'm having a mind block day. Ive used the code from the link below to try and validate a credit card, however i'm not getting an alert when i submit a the wrong data in the ...
0
votes
1answer
543 views

Luhn check digit

I cant seem to figure out what is wrong with my check digit code! At times, it produces 2 length check digit values Example 1277531815000110 <-- check digit is double value?????? ...
0
votes
5answers
369 views

Algorithm for message code validation

If you read this thread before - forget everything I wrote, I must have been drunk when I wrote it. I'm starting over: I'm currently working on a project where we will be using some sort of algorithm ...
-1
votes
1answer
70 views

Luhn algorithm with only integers [closed]

I have to write a program with a Luhn check that is a different variation than the default. Double all even place digits and add them together If the result of doubling, such as 2*9=18, is 2 digits, ...