I know that ISO 7816 compliant cards, like modern EMV Chip and PIN cards, are typically used in a command response scenario, the reader sends a command APDU to the card, and the latter sends a response. However, can the card perform concurrent activities, such as perform any dummy action while it waits for a command from the reader, or does it have to wait passively?
Can I perform concurrent actions on an ISO 7816 card?
201 Views Asked by OrangeJusticeV At
2
There are 2 best solutions below
Related Questions in CONCURRENCY
- Unexpected inter-thread happens-before relationships from relaxed memory ordering
- Multiple Processes, Multiple Processors, Single Priority Queue - Java Thread-Safe and Concurrency -
- Efficiently processing many small elements of a collection concurrently in Java
- Zig Concurrency Vs Erlang Concurrency, is Zig less efficient than Erlang?
- Two Update statements on a row are running simultaneously with no locking in MYSQL
- How to Identify Specific Transaction Anomalies in a Given Schedule?
- How can I improve concurrent message processing with Google Task Queue?
- Why does the following program printf "thread 1 exists" twice in WSL2?
- ModelState.IsValid is false when its Data Model Concurrency Token is non nullable
- .NET A second operation was started on this context instance before a previous operation completed
- Can someone tell me what's wrong with mi Task.await?
- I am a beginner. More than problems, I have ideas I share my code ;D. NO RULES
- Understanding Potential Deadlock in Resource Pool Implementation Described in "Go in Action"
- Why are pre-allocated stacks expensive, given 64-bit virtual memory?
- Concurrency issues with server-sent events in Python
Related Questions in SMARTCARD
- Authentication with SmartCard sending a SOAPUI request
- How can I read these P1 and P2 parameters in smartcard reference data?
- Sign a pdf document using signature from USB token in python
- Is it possible Java Card supports NIO,like event-driven, reactor
- How to encode or write information into MIFARE DESFIRe ev2 that would act as id card with microtransaction functionality
- Issue with Secure Messaging in Android HCE App - Invalid Class (SW 6E00) during AID Selection
- Secure Channel Protocol 01 and 03 in Win32API DLL
- Change key of Desfire Card application
- STORE DATA APDU for PPSE info
- How to properly parametrize a SECP256K1 curve using the SE051 IoT SDK?
- C# http request mtls external private key
- Can't install .cap file on NXP P71D321
- nfcpy reading public information from contactless credit card with APDU commands
- How To Modify PKCS11 Object Value Attribute
- Yubikey 5: is it similar enough to smart cards for testing authentication?
Related Questions in APDU
- Secure Messaging Implementation in C#
- SMRequest After PACE PIN Establishement
- How can I read these P1 and P2 parameters in smartcard reference data?
- Get AID from Debit/Credit Card using NFC
- How to send and read apdu commads to usb smart card reader in java android
- Is it possible Java Card supports NIO,like event-driven, reactor
- Secure Channel Protocol 01 and 03 in Win32API DLL
- STORE DATA APDU for PPSE info
- How can I upload a SIM applet through OTA
- nfcpy reading public information from contactless credit card with APDU commands
- How to determine in the APDU command from which position to execute READ RECORD?
- Selecting AID in new eVRCs (after year ~2022)
- NTAG424 Authentication Issue in IOS
- Smart Card development- Class not supported error
- APDU Command for same Personal ID card returns different response on different readers
Related Questions in EMV
- Pos certification issue
- VISA Generate CDOL2
- Security considerations on EMV keys
- EMV RSA Recovery Function in c#
- payments api EMV data cybersource
- nfcpy reading public information from contactless credit card with APDU commands
- How to determine in the APDU command from which position to execute READ RECORD?
- Identify if the transaction is done via HCE or NFC?
- Card returned AAC in second generate AC CID data even online host approved transaction
- Trying to get GPO command for EMV Card failed
- QR Code encoding using zxing to encode url data
- What EMV tag can i read to determine if a EMV card is a credit card or a debit card?
- Cryptogram Information Data 9F27 returns AAC in second generated AC but approved from host
- CVM limit with contact transaction
- Visa has no CVM List with contactless
Related Questions in ISO-7816-4
- How can I read these P1 and P2 parameters in smartcard reference data?
- NTAG424 Authentication Issue in IOS
- Smart Card development- Class not supported error
- Error 69 82 when doing APDU verify instruction with biometric
- Why '90 00' status word is chosen for sucessful response in smart cards?
- EMV INTERNAL AUTHENTICATE 6985 Respond
- How to correctly encode APDU Le field according to Standard ISO_IEC_7816-4-2020
- Get Card Number and Expire Data of Visa card through APDU commands (ISO 7816)
- ReadBinary APDU always returning invalid length (SW1=0x67) [ISO7816]
- ISO 7816 How to know card voltage before reading ATR
- ISO 7816 How to Use Calculate Signature Command APDU Multiple Times
- What is the difference between "x", "-" and "0" in Table 9 of the ISO-7816-4 Section 5 documentation
- ISO 7816-4 How to construct this C-APDU to write?
- APDU sequence to read ICC card records failing on selection of application by AID (giving a response of SWA SWB 6283)
- Tachograph Service Card ISO 7816
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The card does the action only based on the APDU command request. For a request, a response is expected, and in most cases in a sequence too. To say, you cannot do a GET PO before SELECT, you cannot request a GEN AC before GET PO.
But I am curious what the 'concurrent activities' possible, could you think aloud?