Versions Compared

Key

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

...

expirationDate = “Expiration Date of the card to be entered by user”, a String (YYMM).

Code Block
    public byte[] merchantManualEntry() {
        TlvTree tlvTree = TlvTree.Empty();
        tlvTree.AddAscii(ArkosManualEntryTags.cardNumber, cardNumber"45301918312986731");
        tlvTree.AddAscii(ArkosManualEntryTags.expirationDate, expirationDate"2212" );
        return tlvTree.AsBytes();
    }

...

Code Block
    public byte[] merchantCVDEntry() {
        TlvTree tlvTree = TlvTree.Empty();
        tlvTree.AddAscii(ArkosManualEntryTags.cvv, cvv"232");
        return tlvTree.AsBytes();
    }

...