Search code examples
c#.netcredit-cardluhn

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 be able to generate around 300 card numbers at a time, and ideally i would be able to do this when generating my input data.

Many Thanks


Solution

  • Create random numbers, then calculate the checksum number.

    You can find more information at Wikipedia - Luhn, both details about the algorithm and links to different implementations.