Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

manualEntrySelection()

The first callback will ask the user for PAN Number and Expiration date.

cardNumber = “PAN number to be entered by user”.

...

Code Block
    private byte[] manualEntrySelection() {
        TlvTree tlvTree = TlvTree.Empty();
        tlvTree.AddAscii(ArkosManualEntryTags.cardNumber, cardNumber);
        tlvTree.AddAscii(ArkosManualEntryTags.expirationDate, expirationDate );
        return tlvTree.AsBytes();
    }

cvvEntry()

The Card Validation Digits are not necessary for a manual transaction. However, it can be configured if required and the following callback will be called to ask the user for CVV input.

How to configure cvv?

Ensure that in tag, Application Profile Settings (DF27), byte 2 bit 6 is set to 1.

...

cvv = “cvv to be entered by user”.

...