1

I know what NFC is and have done quite studies concerning NFC Mobile Payment ( that is bringing the phone close to the reader to make payment like Google wallet). My problem now is what happens between the reader and the Credit card companies or the Banks that issued the Debit card the buyer is using. Another issue am struggling with, is the medium on which data is exchanged between the reader and Card companies or banks.

My questions are ::

1) When a user brings the phone to the reader to make a payment what goes on between the reader and the Banks OR Credit card systems. W Does the reader contact the Credit card/banking system for verification?

2) On which medium does the reader contact the Credit card companies or the banks for authentication and checks if there is enough balance to make the purchase? Does the reader send those information via internet?

3) In the case of train tickets how does the reader knows that the ticket is valid? Does it also contact a back-end system? And if so on which medium? Via internet or what?

I have googled the whole day for these answers but all the articles i get are too vague. They don't talk anything about what goes on between the Payment reader and the Banks or credit card companies.

I will be happy if someone can give me a detail description or point me to a tutorial or another Q&A which answered these questions.

Thank you.

Eddy Freeman
  • 3,207
  • 6
  • 35
  • 55

1 Answers1

5
  • During a payment there are four "parties". The bank, acquirer, merchant and the payment organisation (like Visa or MasterCard). During the payment, the merchant accepts your payment with a POS. (Point Of Sale, the hardware with the reader that accepts your payment) The communication goes through the acquirer, then through the infrastructure of the payment organisation (Visa...) to your bank. The role of the organisation is routing this information and transferring money. There's a LOT of crytography involved at every step.

  • The credit card can (but doesnt have to) ask the bank for authentication and/or authorization. Some cards can hold their balance inside the chip (its secure, there is no physical way to acces or modify that data in the wrong way, and offline authorisation is faster), others will ask the bank for balance. The decision about asking the bank for balance can be made basing on many variables, like the amout that is being paid. Same goes for authentication. Sometimes the PIN will be required, sometimes it wont, and it can be verified by both the card (offline PIN control) and the bank (online PIN control). Depending on the agreements between the bank and the payment organisation, sometimes, when the bank is unreachable (a failure on their side), the organisation can authorize some transactions in its name.

  • The last question has no single answer, even as generic as the ones i provided for the first two. Its totally dependant on the implementation. Id bet You could think of at least three solutions by yourself.

The problem that interests you was poked earlier: https://stackoverflow.com/a/12320799/1624636

A bit of googling allowed me to find this: http://www.firstdata.com/downloads/thought-leadership/payments101wp.pdf You might find it helpful

You probably want to get familiar with the EMV standard. Check out: http://www.emvco.com/best_practices.aspx?id=217 Let me warn You tho - its quite a big read!

Community
  • 1
  • 1
K.L.
  • 2,419
  • 1
  • 21
  • 26
  • @KL thanks for your reply. Am looking forward to your addition. I hope you or other people talk also about the medium by which the reader and the Banks/credit card systems communicate. Thanks for the link – Eddy Freeman Sep 20 '12 at 15:14
  • hope this is sufficient - the topic is vast and its quite impossible to tackle it on a stie like SO :) – K.L. Sep 20 '12 at 15:36
  • @KL thanks for your answer. i still have a small area you should tackle for me. Lets assume there is an online authentication, does the reader uses internet to contact the bank or it uses other communication medium? Similar as Google wallet, is the reader connected via internet or other communication medium? – Eddy Freeman Sep 20 '12 at 15:41
  • I think You should use the term POS instead of reader - the reader is just a part of the POS and doesnt communicate by itself with anything ;) I cant really tell you what medium Visa and others use, but id say thats some kind of intranet – K.L. Sep 20 '12 at 15:46
  • @KL Ok thanks. I will search more about that on the web. I appreciate your answers. – Eddy Freeman Sep 20 '12 at 15:51
  • @KL The link is very awesome. Thanks for sharing – Eddy Freeman Sep 20 '12 at 18:54