Provides access to Grabba contact smart card reader functionality, such as exchanging APDUs.
Callbacks to user-provided code may be triggered in response to relevant events, e.g. insertion of a smartcard. Refer to the GrabbaSmartcardListener class for the details of these callbacks and how to enable them.
Calls to this class will not succeed until a connection to a Grabba device has been established. Refer to the GrabbaCoreAPI class for details of how to establish or query this connection.
Most API functions require an interface ID, so as to support Grabba devices which contain more than one contact smart card interface - e.g. a Grabba device may contain one full-sized card slot and one Secure Access Module (SAM) interface. Users of single-interface devices should use the value returned by defaultInterface (GrabbaSmartcardAPI) to populate this parameter; refer to that function and to GrabbaSmartcardInterfaceID for additional details.
Each interface may contain a smart card or not; the CardPresent() method queries this. Only full-sized card slots allow for insertion and removal when the Grabba device is powered; if this occurs, any pending actions on that interface are cancelled, and notifications are provided via any active GrabbaSmartcardListener objects.
Communication with an inserted card usually involves four steps:
Cards which boot up in "specific mode" (as defined in ISO/IEC 7816-3), or which do not indicate support for non-default parameters or protocols, will not accept PPS exchanges. Consequently, only three steps are needed for them - power up, APDU exchange and power down. The PPS event in GrabbaSmartcardListener (for auto PPS exchange) or the readyForPPS method (for manual PPS exchange) may be used to differentiate between cards which support PPS exchange and those which do not.
Grabba devices do not support concurrent smart card operations, even if the operations target different interfaces. Consequently, for correct operation it is necessary to wait for each power-up, power-down or APDU-exchange operation to be completed (with notifications supplied via GrabbaSmartcardListener objects for asynchronous operations) prior to launching another such operation. Failure to do so will result in DeviceBusy errors being returned to the calling code.
Thread safety: This class is fully thread-safe.
Instance Methods | |
(instancetype _Nullable) | - init |
Not callable (NS_UNAVAILABLE ) since this is a static class. More... | |
Class Methods | |
(BOOL) | + cardPresentInInterface: |
Query whether there is currently a contact smart card present in a given interface on a connected Grabba device. More... | |
(GrabbaSmartcardInterfaceID) | + defaultInterface |
Obtain the ID of the default interface for a connected Grabba device. More... | |
(void) | + exchangeAPDU_AtInterface:command:error: |
Asynchronously exchange an APDU (Application Protocol Data Unit) with a card in a given interface on a connected Grabba device. More... | |
(void) | + exchangePPS_AtInterface:T:F:D:error: |
Asynchronously exchange a PPS (Protocol and Parameter Selection) with a card in a given interface on a connected Grabba device. More... | |
(void) | + powerDownInterface:blocking:error: |
[DEPRECATED] Attempt to power down a contact smart card in a given card interface on a connected Grabba device More... | |
(void) | + powerDownInterface:blocking:waitIfCardBusy:error: |
Attempt to power down a contact smart card in a given card interface on a connected Grabba device. More... | |
(BOOL) | + poweredInterface: |
Query whether a contact smart card is currently powered up in a given card interface on a connected Grabba device. More... | |
(void) | + powerUpInterface:autoPPS:error: |
Attempt to power up a contact smart card in a given card interface on a connected Grabba device. More... | |
(BOOL) | + PPS_ExchangedAtInterface: |
Query whether a contact smart card has had a successful PPS exchange since its last power-up. More... | |
(BOOL) | + readyForPPS_AtInterface: |
Query whether a contact smart card is ready for a PPS exchange. More... | |
(BOOL) | + supported |
Query whether there is currently a connected Grabba device with smartcard functionality. More... | |
(GrabbaResponseAPDU *_Nonnull) | + syncExchangeAPDU_AtInterface:command:error: |
Synchronously exchange an APDU (Application Protocol Data Unit) with a card in a given interface on a connected Grabba device. More... | |
(BOOL) | + validInterface: |
Query whether a given interface ID represents a valid interface on a connected Grabba device. More... | |
+ (BOOL) cardPresentInInterface: | (GrabbaSmartcardInterfaceID) | iface |
Query whether there is currently a contact smart card present in a given interface on a connected Grabba device.
This is a non-blocking call; card presence/absence information is cached internally by the driver.
iface | ID of the interface which is being queried |
+ (GrabbaSmartcardInterfaceID) defaultInterface |
Obtain the ID of the default interface for a connected Grabba device.
The default interface is as follows:
The result of this function will be fixed for the lifetime of a connection; consequently, it is acceptable to cache the value and then use it for all subsequent API calls.
Note that this interface will always be a valid interface on any Grabba device with contact smart card support. This function should not be called unless such a device is currently connected.
+ (void) exchangeAPDU_AtInterface: | (GrabbaSmartcardInterfaceID) | iface | |
command: | (GrabbaCommandAPDU *_Nonnull) | command | |
error: | (GrabbaErrorCode *_Nonnull) | error | |
Asynchronously exchange an APDU (Application Protocol Data Unit) with a card in a given interface on a connected Grabba device.
If the supplied error code indicates no prior errors, there is a connected Grabba device with contact smart card capabilities, the selected interface is valid for that device, and that interface contains a powered-on smart card, then a command APDU will be sent to that card. Following this, the result of the operation will be provided to any active GrabbaSmartcardListener objects, either as an APDU_Event if it succeeds or an ErrorEvent if it fails (regardless of reason).
If a prior error is indicated, then no action is taken, and the error code will not be updated.
If there is no connection, the connected Grabba device lacks contact smart card capabilities, the interface ID is invalid for the device, there is no card in the selected interface, or the card has not been powered on, then the error code will be updated accordingly and no further action will be taken.
iface | ID of the interface containing the card |
command | APDU to exchange with the card |
error | Error code; operation proceeds only if set to GrabbaNoError. If an error is detected when starting the operation, then this will be updated with the details. |
+ (void) exchangePPS_AtInterface: | (GrabbaSmartcardInterfaceID) | iface | |
T: | (GrabbaSmartcardProtocolID) | T | |
F: | (GrabbaSmartcardClock) | F | |
D: | (GrabbaSmartcardBaud) | D | |
error: | (GrabbaErrorCode *_Nonnull) | error | |
Asynchronously exchange a PPS (Protocol and Parameter Selection) with a card in a given interface on a connected Grabba device.
If the supplied error code indicates no prior errors, there is a connected Grabba device with contact smart card capabilities, the selected interface is valid for that device, that interface contains a powered-on smart card, that card supports PPS exchanges, and no PPS or APDU exchanges have taken place since the card was powered up, then a PPS will be sent to that card.
Event notifications will be provided to any active GrabbaSmartcardListener objects as follows:
If a prior error is indicated, then no action is taken, and the error code will not be updated.
If there is no connection, the connected Grabba device lacks contact smart card capabilities, the interface ID is invalid for the device, there is no card in the selected interface, the card has not been powered on, or a prior PPS or APDU exchange was triggered since power-up, then the error code will be updated accordingly and no further action will be taken.
iface | ID of the interface containing the card |
T | Protocol selection as per ISO/IEC 7816-3 |
F | Clock rate conversion integer and maximum supported frequency as per ISO/IEC 7816-3 |
D | Baud rate adjustment integer as per ISO/IEC 7816-3 |
error | Error code; operation proceeds only if set to GrabbaNoError. If an error is detected when starting the operation, then this will be updated with the details. |
- (instancetype _Nullable) init |
Not callable (NS_UNAVAILABLE
) since this is a static class.
+ (void) powerDownInterface: | (GrabbaSmartcardInterfaceID) | iface | |
blocking: | (BOOL) | blocking | |
error: | (GrabbaErrorCode *_Nonnull) | error | |
[DEPRECATED] Attempt to power down a contact smart card in a given card interface on a connected Grabba device
This is a deprecated form of powerDown provided solely for compatibility purposes. Behaviour is identical to calling the current version of the function with its waitIfCardBusy
parameter set to NO
. Refer to that function's documentation for details.
iface | ID of the interface containing the card |
blocking | If true (recommended), call is blocking and operation is synchronous; if false, call is non-blocking and operation is asynchronous. |
error | Error code; operation proceeds only if set to GrabbaNoError. If an error is detected when starting the operation, then this will be updated with the details. |
+ (void) powerDownInterface: | (GrabbaSmartcardInterfaceID) | iface | |
blocking: | (BOOL) | blocking | |
waitIfCardBusy: | (BOOL) | waitIfCardBusy | |
error: | (GrabbaErrorCode *_Nonnull) | error | |
Attempt to power down a contact smart card in a given card interface on a connected Grabba device.
If the supplied error code indicates no prior errors, there is a connected Grabba device with contact smart card capabilities, the given interface is valid, and that interface contains a smart card, then an attempt will be made to power that card down. The results of this operation will be communicated as events to any active GrabbaSmartcardListener objects:
If a prior error is indicated, or if the card in question is already powered down, then no action is taken, and the error code will not be updated.
If there is no connection, the connected Grabba device lacks contact smart card capabilities, the given interface ID is invalid for that device, or there is no card in the selected interface, then the error code will be updated accordingly and no further action will be taken.
This operation may be performed either synchronously or asynchronously:
iface | ID of the interface containing the card |
blocking | If true (recommended), call is blocking and operation is synchronous; if false, call is non-blocking and operation is asynchronous. |
waitIfCardBusy | Modifies behaviour as follows:
|
error | Error code; operation proceeds only if set to GrabbaNoError. If an error is detected when starting the operation, then this will be updated with the details. |
+ (BOOL) poweredInterface: | (GrabbaSmartcardInterfaceID) | iface |
Query whether a contact smart card is currently powered up in a given card interface on a connected Grabba device.
This is a non-blocking call; communication status is cached internally by the driver.
iface | ID of the interface which is being queried |
+ (void) powerUpInterface: | (GrabbaSmartcardInterfaceID) | iface | |
autoPPS: | (BOOL) | autoPPS | |
error: | (GrabbaErrorCode *_Nonnull) | error | |
Attempt to power up a contact smart card in a given card interface on a connected Grabba device.
If the supplied error code indicates no prior errors, there is a connected Grabba device with contact smart card capabilities, the given interface is valid, and that interface contains a smart card, then an attempt will be made to power that card up, and if that succeeds then a Protocol and Parameter Selection (PPS) message exchange will optionally be triggered.
If a prior error is indicated, then no action is taken, and the error code will not be updated.
If there is no connection, the connected Grabba device lacks contact smart card capabilities, there is no card in the selected interface, or the card in question is already powered on, then the error code will be updated accordingly and no further action will be taken.
The results of the operation, if attempted, will be communicated as events to any active GrabbaSmartcardListener objects:
The triggering of PowerUpEvent may be used to inform the calling code as to the card's state - if that event doesn't trigger, then the card can be assumed to be powered down at the end of the operation.
The parameters selected for automatic PPS exchange (if enabled and supported) will be as follows:
If the PPS exchange fails, then it is still possible to use the card; call PowerUp again with autoPPS set to false, then call exchangePPS with appropriate settings to manually configure the session protocol and parameters. However, if the card cannot be powered up in the first place then it is probably unusable.
iface | ID of the interface containing the card |
autoPPS | This parameter controls triggering of automatic PPS exchanges; it should be set true for all card types on S2- or GT-series devices, and for most card types on S- or Z-series devices. Behaviour is as follows:
|
error | Error code; operation proceeds only if set to GrabbaNoError. If an error is detected when starting the operation, then this will be updated with the details. |
+ (BOOL) PPS_ExchangedAtInterface: | (GrabbaSmartcardInterfaceID) | iface |
Query whether a contact smart card has had a successful PPS exchange since its last power-up.
This is a non-blocking call; PPS exchange status is cached internally by the driver.
iface | ID of the interface which is being queried |
+ (BOOL) readyForPPS_AtInterface: | (GrabbaSmartcardInterfaceID) | iface |
Query whether a contact smart card is ready for a PPS exchange.
This is a non-blocking call; PPS exchange status is cached internally by the driver.
A card is ready for PPS exchange if:
iface | ID of the interface which is being queried |
+ (BOOL) supported |
Query whether there is currently a connected Grabba device with smartcard functionality.
This is a non-blocking call; device capabilities are cached internally by the driver.
+ (GrabbaResponseAPDU* _Nonnull) syncExchangeAPDU_AtInterface: | (GrabbaSmartcardInterfaceID) | iface | |
command: | (GrabbaCommandAPDU *_Nonnull) | command | |
error: | (GrabbaErrorCode *_Nonnull) | error | |
Synchronously exchange an APDU (Application Protocol Data Unit) with a card in a given interface on a connected Grabba device.
If the supplied error code indicates no prior errors, there is a connected Grabba device with contact smart card capabilities, the selected interface is valid for that device, and that interface contains a powered-on smart card, then a command APDU will be sent to that card. If the operation fails, the error code will be updated; if it succeeds, the APDU received in response will be returned.
If a prior error is indicated, then no action is taken, and the error code will not be updated.
If there is no connection, the connected Grabba device lacks contact smart card capabilities, the interface ID is invalid for the device, there is no card in the selected interface, or the card has not been powered on, then the error code will be updated accordingly and no further action will be taken.
iface | ID of the interface containing the card |
command | APDU to exchange with the card |
error | Error code; operation proceeds only if set to GrabbaNoError. If an error is detected when starting the operation, then this will be updated with the details. |
+ (BOOL) validInterface: | (GrabbaSmartcardInterfaceID) | iface |
Query whether a given interface ID represents a valid interface on a connected Grabba device.
iface | ID of the interface which is being queried |