Skip to content

💳 Get Information About Credit Cards and Validate Them.

License

Notifications You must be signed in to change notification settings

open-specification/payment

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The Payments Module

GitHub code size in bytes GitHub commit activity GitHub top language GitHub contributors

Features

  1. Verify Credit Card Number with Luhn Method - /luhn/:number/

    • The Luhn method, also known as the mod-ten method, is one of the most basic methods to verify a credit card number. Just because a credit card number may pass the luhn algorithm, does not mean that the credit card is valid.
  2. Get Issuer from Credit Card Number - /issuer/:number/

    • One important piece of information that can be obtained from a credit card number is the issuer. Given the number, the module can identify who the credit card issuer is, or if the credit card issuer does not exist.
  3. Check if the Valid Through Date Works - /date/:month/:year/

    • Blah.
  4. Find Detailed Information about Credit Number - /info/:number/

    • Blah.
  5. Performance

    • The power of the Rust Programming Language enables this module to have sub-millisecond response times. Speed may vary depending on your network connection, but the code itself will never be the performance bottleneck.

Licensing

The code is under the Buisness Source License license. See the licensing.md file for more information.