I´m trying to access the Information on a Mifare Smartcard(iso14443A) over a Omnikey 5321 CL reader. I tried to use the smartcard lib, but it uses an other iso standard. For accessing the Card I have to set a Application ID ( 3x hex), a key (32 int), keyid (hex).
Access a SmartCard iso14443A with Node.js
672 Views Asked by Troy At
2
There are 2 best solutions below
0
VincentBester
On
I am busy with similar process, however after searching I found this example:
EDIT
In fact I actually got this one working
It returns the following:
ACS ACR122 0 card detected {
atr: <Buffer 3b 8f 80 01 80 4f 0c a0 00 00 03 06 03 00 01 00 00 00 00 6a>,
standard: 'TAG_ISO_14443_3',
type: 'TAG_ISO_14443_3',
uid: '767aec7e'
}
Related Questions in NODE.JS
- How to solve CERT_UNTRUSTED error in nodemailer
- Run a loop over a callback, node js
- Implementing prerender.io middleware in sails.js
- Token based authorization in nodejs/ExpressJs and Angular(Single Page Application)
- formatting path string in javascript
- One to One screensharing using WEBRTC
- Create polygon from grid (for collisions)
- Strange npm behavior when installing packages like grunt
- Convert JSON.gz to JSON in node js
- "Your npm version is outdated." but it's not. While install yo
- Why put methods on the prototype of a class instead of declaring them in the constructor?
- Node JS Async Response
- mongoose get property from nested schema after `group`
- Cannot Receive Incoming call on Twilio android Client
- How can I change a specific line in a file with node js?
Related Questions in NPM
- Strange npm behavior when installing packages like grunt
- "Your npm version is outdated." but it's not. While install yo
- How do I deploy a node.js app to azure if it contains private npm modules
- Unpredictable dependency behaviour in Node JS while using the config npm module
- Installing handlebars without npm
- npm: Use explicit package.json from subdirectory
- Which npm version is correct?
- npm doesn't download packages (connect ETIMEDOUT)
- Npm requests stopped by home router
- return a js object from a javascript function that is called from a node cpp addon
- Use select2 version 4.0 with NPM and browserify
- Not able to run 'npm install' on vagrant homestead
- What is a good approach to building and distributing a React Native iOS component that extends iOS functionality?
- Dependency updates do not appear after browserify
- Error while updating to latest pm2
Related Questions in SMARTCARD
- How to validate a Smart/CAC card using input from Precise Biometrics Tactivo
- Java Card applet EEPROM vs RAM testing
- ISO/IEC 7816 commands over CCID
- C on smartcards
- Is smartcard logon in windows bound to minidrivers and MS base CSP or any CSP will work?
- number value to byte[6] array card reader
- Using A3 certificate with a Service
- How do I interpret the response from GET PROCESSING OPTIONS?
- javax.smartcardio case 4 APDU vanishing - 6700 response - warning
- Determine Facility Code and Card Number from ATR in C#
- Android - Usb CCID large data
- Create Sharepoint connector to apply Digital Signature using Smartcards or USB Tokens?
- Read serial from smartcard with javax.smartcardio
- How to use SCARD_CTL_CODE under linux?
- java pkcs11 slot detection issue with OpenSC if smartcard is removed and inserted again
Related Questions in MIFARE
- authentication error in mifare plus card using nxp sdk advanced
- Reading NFC Tag gets null UID
- Configure MIFARE DESFire EV1 as NFC Forum Type 4 Tag for NDEF
- Mifare Desfire symmetric authentication with master key on android
- Check and remove write protection on Mifare NTAG216?
- re-writing uid and block 0 on Chinese (supposed to be writable) MIFARE 1K card in python
- How to calculate IV on AuthenticateISO on DESFire EV1
- ACR35: APDU command select file returns status 6A 82 (file not found)
- Authentication Error: DESfire against SAM with 3DES algorithm
- pcsc-sharp Mifare Authentication
- mifare classic AuthenticateKeyNo() getting a error "Reference key not useable"
- Is the UID on mifare classic read only?
- Mifare Desfire EV1 Authentication
- How to do authentication for MIFARE Ultralight C on Android
- Communicate with ISO/IEC14443-3a (Layer3 exchange) for NFC exchange Mifare Plus card
Related Questions in OMNIKEY
- C# dotnet core PCSC and the OMNIKEY 3121
- Omnikey 5421 generic card command interface not working for Mifare plus SL1
- HID Omnikey 5427 CK not working in KBW mode
- Writing data to a mifare desfire card
- Send APDU command for ultralight C authentication
- Omnikey 5X21 APDU write command for ultralight C
- What does APDU response 910B mean for a DESFire EV2 card?
- I want to get the omnikey readear running status
- Access a SmartCard iso14443A with Node.js
- omnikey 3121 dynamic emv card reader and writer for windows
- Reading PACS (raw Wiegand) data with Omnikey 5022
- How to get access to Omnikey 3121 smart card reader
- Enable ISO/IEC 14443 Type A in omnikey 5422
- How can I send APDU command using C++?
- How can I read a data from OMNIKEY 3121 smart card device?
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 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?
You can still use smartcard lib, but you have to configure the reader to use the MIFARE mode instead of the T-CL variant of 14443 protocol.
If I remember corectly, the Omnikey workbench provides a graphical configuration tool for that purpose.
I strongly recommend to study Omnikey contactless smart card readers developer guide, especially the section MIFARE emulation mode, for serious work.
(I have no idea, what a one byte Application ID means in Mifare context, and what value 3x is supposed to represent.)