Encapsulation of a smartcard command Application Protocol Data Unit (APDU)
The command APDU is the communication message sent from a card reader to a smartcard. This class encapsulates a command APDU, ensuring its validity at construction-time, and guaranteeing it remains valid for the lifetime of the object. The get (GrabbaCommandAPDU) method provides read-only access to the raw APDU data.
Additional information may be found at: https://en.wikipedia.org/wiki/Smart_card_application_protocol_data_unit
The full specification of the format is found in ISO/IEC 7816-3 and ISO/IEC 7816-4.
Thread safety: This class is immutable, and thus fully thread-safe.
Instance Methods | |
(NSData *_Nonnull) | - get |
Copy the entire APDU in byte-array format. More... | |
(NSData *_Nonnull) | - header |
Copy the four header fields CLA, INS, P1 and P2 in byte-array format. More... | |
(NSString *_Nonnull) | - hexDump |
Obtain a hex dump of the entire APDU. More... | |
(instancetype _Nullable) | - init |
Initialise a null APDU - only compulsory fields are present, and all four header fields are set to zero. More... | |
(instancetype _Nullable) | - initFromStream: |
Extract APDU data from a byte stream. More... | |
(instancetype _Nullable) | - initWithCLA:INS:P1:P2: |
Initialise an APDU as per ISO/IEC 7816-3 case 1 (i.e. no Lc, Le or command-data fields) More... | |
(instancetype _Nullable) | - initWithCLA:INS:P1:P2:data: |
Initialise an APDU as per ISO/IEC 7816-3 case 3 (i.e. Lc and command-data fields present, but no Le field) More... | |
(instancetype _Nullable) | - initWithCLA:INS:P1:P2:data:Ne: |
Construct an APDU as per ISO/IEC 7816-3 case 4 (i.e. Lc, command-data and Le fields all present) More... | |
(instancetype _Nullable) | - initWithCLA:INS:P1:P2:Ne: |
Initialise an APDU as per ISO/IEC 7816-3 case 2 (i.e. Le field present, but no Lc or command-data fields) More... | |
Class Methods | |
(instancetype _Nullable) | + commandAPDU |
Allocate and initialise a null APDU - only compulsory fields are present, and all four header fields are set to zero. More... | |
(instancetype _Nullable) | + commandAPDU_FromStream: |
Allocate and initialise an APDU, extracting the data from a byte stream. More... | |
(instancetype _Nullable) | + commandAPDU_WithCLA:INS:P1:P2: |
Allocate and initialise an APDU as per ISO/IEC 7816-3 case 1 (i.e. no Lc, Le or command-data fields) More... | |
(instancetype _Nullable) | + commandAPDU_WithCLA:INS:P1:P2:data: |
Allocate and initialise an APDU as per ISO/IEC 7816-3 case 3 (i.e. Lc and command-data fields present, but no Le field) More... | |
(instancetype _Nullable) | + commandAPDU_WithCLA:INS:P1:P2:data:Ne: |
Allocate and initialise an APDU as per ISO/IEC 7816-3 case 4 (i.e. Lc, command-data and Le fields all present) More... | |
(instancetype _Nullable) | + commandAPDU_WithCLA:INS:P1:P2:Ne: |
Allocate and initialise an APDU as per ISO/IEC 7816-3 case 2 (i.e. Le field present, but no Lc or command-data fields) More... | |
(size_t) | + maxCommandLength |
Maximum permitted command length in bytes (excluding header and length fields) More... | |
Properties | |
uint8_t | CLA |
Instruction class (CLA) - the type of smartcard command, e.g. interindustry or proprietary. More... | |
NSData *_Nonnull | commandData |
Command data for this APDU if any, otherwise an empty array. More... | |
BOOL | commandDataPresent |
Are the command data and encoded command data length (Lc) fields present in this APDU? More... | |
uint8_t | INS |
Instruction code (INS) - indication of the specific smartcard command, e.g. "write data". More... | |
NSData *_Nonnull | Lc |
Encoded length of command data (Lc), represented as a byte array; will be empty if Nc = 0. More... | |
NSData *_Nonnull | Le |
Encoded maximum expected response length (Le), represented as a byte array; will be empty if Ne = 0. More... | |
BOOL | LePresent |
Is the encoded maximum expected response length (Le) field present in this APDU? More... | |
uint16_t | Nc |
Length in bytes of the command data (Nc) if there is any, otherwise zero. More... | |
uint32_t | Ne |
Maximum number of response bytes expected (Ne), range 0 to maxResponseLength inclusive. More... | |
uint8_t | P1 |
First parameter byte (P1) - e.g. offset into file at which to write the data. More... | |
uint8_t | P2 |
Second parameter byte (P2) - e.g. offset into file at which to write the data. More... | |
BOOL | shortEncoding |
Is this APDU using the "short" encodings for the Lc and Le fields (if present) More... | |
+ (instancetype _Nullable) commandAPDU |
Allocate and initialise a null APDU - only compulsory fields are present, and all four header fields are set to zero.
+ (instancetype _Nullable) commandAPDU_FromStream: | (NSData *_Nonnull) | stream |
Allocate and initialise an APDU, extracting the data from a byte stream.
The first four bytes of the stream are used to construct the CLA, INS, P1 and P2 fields respectively.
If no data is present beyond the first four bytes, then Nc = Ne = 0 and parsing is considered successful.
Otherwise, the remaining bytes are used to populate the optional Lc field, the optional command-data field, and the optional Le field. The following combinations are tested, in the following order:
stream | APDU data stream; must contain a valid command APDU (and only that APDU - no additional leading or trailing bytes are permitted) |
nil
if it failed + (instancetype _Nullable) commandAPDU_WithCLA: | (unsigned) | CLA | |
INS: | (unsigned) | INS | |
P1: | (unsigned) | P1 | |
P2: | (unsigned) | P2 | |
Allocate and initialise an APDU as per ISO/IEC 7816-3 case 1 (i.e. no Lc, Le or command-data fields)
CLA | Instruction class - indicates the type of command, e.g. interindustry or proprietary, valid range 0-254 |
INS | Instruction code - indicates the specific command, e.g. "write data", valid range 0-255 |
P1 | First parameter byte for the command, e.g. offset into file at which to write the data, valid range 0-255 |
P2 | Second parameter byte for the command, e.g. offset into file at which to write the data, valid range 0-255 |
nil
if it failed + (instancetype _Nullable) commandAPDU_WithCLA: | (unsigned) | CLA | |
INS: | (unsigned) | INS | |
P1: | (unsigned) | P1 | |
P2: | (unsigned) | P2 | |
data: | (NSData *_Nonnull) | data | |
Allocate and initialise an APDU as per ISO/IEC 7816-3 case 3 (i.e. Lc and command-data fields present, but no Le field)
CLA | Instruction class - indicates the type of command, e.g. interindustry or proprietary, valid range 0-254 |
INS | Instruction code - indicates the specific command, e.g. "write data", valid range 0-255 |
P1 | First parameter byte for the command, e.g. offset into file at which to write the data, valid range 0-255 |
P2 | Second parameter byte for the command, e.g. offset into file at which to write the data, valid range 0-255 |
data | Command data; must be of length 1-65535. |
nil
if it failed + (instancetype _Nullable) commandAPDU_WithCLA: | (unsigned) | CLA | |
INS: | (unsigned) | INS | |
P1: | (unsigned) | P1 | |
P2: | (unsigned) | P2 | |
data: | (NSData *_Nonnull) | data | |
Ne: | (unsigned) | Ne | |
Allocate and initialise an APDU as per ISO/IEC 7816-3 case 4 (i.e. Lc, command-data and Le fields all present)
CLA | Instruction class - indicates the type of command, e.g. interindustry or proprietary, valid range 0-254 |
INS | Instruction code - indicates the specific command, e.g. "write data", valid range 0-255 |
P1 | First parameter byte for the command, e.g. offset into file at which to write the data, valid range 0-255 |
P2 | Second parameter byte for the command, e.g. offset into file at which to write the data, valid range 0-255 |
data | Command data; must be of length 1-65535. |
Ne | The maximum number of response bytes expected, valid range 1-65536 |
nil
if it failed + (instancetype _Nullable) commandAPDU_WithCLA: | (unsigned) | CLA | |
INS: | (unsigned) | INS | |
P1: | (unsigned) | P1 | |
P2: | (unsigned) | P2 | |
Ne: | (unsigned) | Ne | |
Allocate and initialise an APDU as per ISO/IEC 7816-3 case 2 (i.e. Le field present, but no Lc or command-data fields)
CLA | Instruction class - indicates the type of command, e.g. interindustry or proprietary, valid range 0-254 |
INS | Instruction code - indicates the specific command, e.g. "write data", valid range 0-255 |
P1 | First parameter byte for the command, e.g. offset into file at which to write the data, valid range 0-255 |
P2 | Second parameter byte for the command, e.g. offset into file at which to write the data, valid range 0-255 |
Ne | The maximum number of response bytes expected, valid range 1-65536 |
nil
if it failed - (NSData* _Nonnull) get |
Copy the entire APDU in byte-array format.
- (NSData* _Nonnull) header |
Copy the four header fields CLA, INS, P1 and P2 in byte-array format.
- (NSString* _Nonnull) hexDump |
Obtain a hex dump of the entire APDU.
- (instancetype _Nullable) init |
Initialise a null APDU - only compulsory fields are present, and all four header fields are set to zero.
nil
if it failed - (instancetype _Nullable) initFromStream: | (NSData *_Nonnull) | stream |
Extract APDU data from a byte stream.
The first four bytes of the stream are used to construct the CLA, INS, P1 and P2 fields respectively.
If no data is present beyond the first four bytes, then Nc = Ne = 0 and parsing is considered successful.
Otherwise, the remaining bytes are used to populate the optional Lc field, the optional command-data field, and the optional Le field. The following combinations are tested, in the following order:
stream | APDU data stream; must contain a valid command APDU (and only that APDU - no additional leading or trailing bytes are permitted) |
nil
if it failed - (instancetype _Nullable) initWithCLA: | (unsigned) | CLA | |
INS: | (unsigned) | INS | |
P1: | (unsigned) | P1 | |
P2: | (unsigned) | P2 | |
Initialise an APDU as per ISO/IEC 7816-3 case 1 (i.e. no Lc, Le or command-data fields)
CLA | Instruction class - indicates the type of command, e.g. interindustry or proprietary, valid range 0-254 |
INS | Instruction code - indicates the specific command, e.g. "write data", valid range 0-255 |
P1 | First parameter byte for the command, e.g. offset into file at which to write the data, valid range 0-255 |
P2 | Second parameter byte for the command, e.g. offset into file at which to write the data, valid range 0-255 |
nil
if it failed - (instancetype _Nullable) initWithCLA: | (unsigned) | CLA | |
INS: | (unsigned) | INS | |
P1: | (unsigned) | P1 | |
P2: | (unsigned) | P2 | |
data: | (NSData *_Nonnull) | data | |
Initialise an APDU as per ISO/IEC 7816-3 case 3 (i.e. Lc and command-data fields present, but no Le field)
CLA | Instruction class - indicates the type of command, e.g. interindustry or proprietary, valid range 0-254 |
INS | Instruction code - indicates the specific command, e.g. "write data", valid range 0-255 |
P1 | First parameter byte for the command, e.g. offset into file at which to write the data, valid range 0-255 |
P2 | Second parameter byte for the command, e.g. offset into file at which to write the data, valid range 0-255 |
data | Command data; must be of length 1-65535. |
- (instancetype _Nullable) initWithCLA: | (unsigned) | CLA | |
INS: | (unsigned) | INS | |
P1: | (unsigned) | P1 | |
P2: | (unsigned) | P2 | |
data: | (NSData *_Nonnull) | data | |
Ne: | (unsigned) | Ne | |
Construct an APDU as per ISO/IEC 7816-3 case 4 (i.e. Lc, command-data and Le fields all present)
CLA | Instruction class - indicates the type of command, e.g. interindustry or proprietary, valid range 0-254 |
INS | Instruction code - indicates the specific command, e.g. "write data", valid range 0-255 |
P1 | First parameter byte for the command, e.g. offset into file at which to write the data, valid range 0-255 |
P2 | Second parameter byte for the command, e.g. offset into file at which to write the data, valid range 0-255 |
data | Command data; must be of length 1-65535. |
Ne | The maximum number of response bytes expected, valid range 1-65536 |
nil
if it failed - (instancetype _Nullable) initWithCLA: | (unsigned) | CLA | |
INS: | (unsigned) | INS | |
P1: | (unsigned) | P1 | |
P2: | (unsigned) | P2 | |
Ne: | (unsigned) | Ne | |
Initialise an APDU as per ISO/IEC 7816-3 case 2 (i.e. Le field present, but no Lc or command-data fields)
CLA | Instruction class - indicates the type of command, e.g. interindustry or proprietary, valid range 0-254 |
INS | Instruction code - indicates the specific command, e.g. "write data", valid range 0-255 |
P1 | First parameter byte for the command, e.g. offset into file at which to write the data, valid range 0-255 |
P2 | Second parameter byte for the command, e.g. offset into file at which to write the data, valid range 0-255 |
Ne | The maximum number of response bytes expected, valid range 1-65536 |
nil
if it failed + (size_t) maxCommandLength |
Maximum permitted command length in bytes (excluding header and length fields)
|
readnonatomicassign |
Instruction class (CLA) - the type of smartcard command, e.g. interindustry or proprietary.
|
readnonatomiccopy |
Command data for this APDU if any, otherwise an empty array.
|
readnonatomicassign |
Are the command data and encoded command data length (Lc) fields present in this APDU?
|
readnonatomicassign |
Instruction code (INS) - indication of the specific smartcard command, e.g. "write data".
|
readnonatomiccopy |
Encoded length of command data (Lc), represented as a byte array; will be empty if Nc = 0.
|
readnonatomiccopy |
Encoded maximum expected response length (Le), represented as a byte array; will be empty if Ne = 0.
|
readnonatomicassign |
Is the encoded maximum expected response length (Le) field present in this APDU?
|
readnonatomicassign |
Length in bytes of the command data (Nc) if there is any, otherwise zero.
|
readnonatomicassign |
Maximum number of response bytes expected (Ne), range 0 to maxResponseLength inclusive.
|
readnonatomicassign |
First parameter byte (P1) - e.g. offset into file at which to write the data.
|
readnonatomicassign |
Second parameter byte (P2) - e.g. offset into file at which to write the data.
|
readnonatomicassign |
Is this APDU using the "short" encodings for the Lc and Le fields (if present)
This property will be set YES if both fields are either absent or encodable using the "short" (single-byte) formats, or NO if either field requires the extended (multi-byte) format.