Skip to content

Files

Latest commit

bc35033 · Mar 13, 2022

History

History
27 lines (18 loc) · 1.66 KB

readme.md

File metadata and controls

27 lines (18 loc) · 1.66 KB

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.