Command

An APDU Command per ISO/IEC 7816-4. Command APDU encoding options:

    case 1:  |CLA|INS|P1 |P2 |                                 len = 4
    case 2s: |CLA|INS|P1 |P2 |LE |                             len = 5
    case 3s: |CLA|INS|P1 |P2 |LC |...BODY...|                  len = 6..260
    case 4s: |CLA|INS|P1 |P2 |LC |...BODY...|LE |              len = 7..261
    case 2e: |CLA|INS|P1 |P2 |00 |LE1|LE2|                     len = 7
    case 3e: |CLA|INS|P1 |P2 |00 |LC1|LC2|...BODY...|          len = 8..65542
    case 4e: |CLA|INS|P1 |P2 |00 |LC1|LC2|...BODY...|LE1|LE2|  len =10..65544

    LE, LE1, LE2 may be 0x00.
    LC must not be 0x00 and LC1|LC2 must not be 0x00|0x00
  • Constructs a CommandAPDU from the four header bytes. This is case 1 in ISO 7816, no command body.

  • Constructs a CommandAPDU from the four header bytes, command data, and expected response data length. This is case 4 in ISO 7816, command data and Le present. The value Nc is taken as dataLength. If Ne or Nc are zero, the APDU is encoded as case 1, 2, or 3 per ISO 7816.

  • APDU body data

  • cla

    APDU class identifier

  • ins

    APDU Instruction

  • p1

    APDU P1

  • p2

    APDU P2

  • ne

    APDU Le - Expected length in response body

  • nc

    APDU Lc - Command body length

  • APDU raw