Questions tagged [pcsc]

PC/SC stands for "Personal Computer/Smart Card", and is a specification for integration of smart cards with personal computers.

PC/SC stands for "Personal Computer/Smart Card", and is a specification for integration of smart cards with personal computers.

Links

255 questions
0
votes
1 answer

java communication with NFC (PC/SC)

Is there a way to java recogonize my NFC card reader with javax.smartcardio.TerminalFactory? I'm using Ubuntu 13.04 and with pcsc_scan I able to read the card: Reader 0: SCL010 Contactless Reader [SCL010 Contactless Reader] (21160951211983) 00 00 …
ethanxyz_0
  • 713
  • 12
  • 37
0
votes
1 answer

JAVA Smart Card client authentication - slow "init keystore"

I'm developing an application that requires client authentication through smart-card. The client performs a mutual SSL authentication using the smart-card. There's an efficiency issue: the client authentication is slow. Before of any internet…
ryuujin
  • 192
  • 3
  • 16
0
votes
1 answer

SCardTrasmit return empty receive byte array

I'm working on a c# PC/SC implementation with ACS readers and NFC Tags. I have prototyped the SCardTransmit as follows: [DllImport("winscard.dll")] public static extern int SCardTransmit (Int32 hCard, ref SCARD_IO_REQUEST pioSendRequest, byte[]…
Edoardo
  • 95
  • 10
0
votes
1 answer

PCSC with windows phone 8

I have an SCL3711 smart card reader connected to my PC. Is there any way in which I can get my windows 8 phone to recognize my PC as an NFC device and transfer data via NFC between them?
Tamara Caligari
  • 479
  • 3
  • 12
  • 28
0
votes
1 answer

SCardTransmit returns ERROR_INVALID_PARAMETER when dwMaxCCIDMessageLength is more than 4KB

I'm developing a usb-smartcard & I use windows PC/SC API to transmit data with that smartcard. This is part of my code: if(SCardConnect(hSC, sCard, SCARD_SHARE_EXCLUSIVE, SCARD_PROTOCOL_T1, &hCard, &dwActiveProtocol) == SCARD_S_SUCCESS) { …
Ehsan Khodarahmi
  • 4,772
  • 10
  • 60
  • 87
0
votes
1 answer

Contacting remote server and testing with ACR880 gprs card reader

I know this is not a proper way to ask on stackoverflow but please try to understand me.Thanks. Ok...i have orderd for an ACR880 card reader that supports GPRS as advised by the ACR company for use in my desired application to contact a remote…
Hillary Namanya
  • 93
  • 4
  • 13
-1
votes
1 answer

Finding info (manufacturer, card type...) about a ISO-14443 card with PCSC reader

I recently began to use a PCSC reader with ISO-14443 cards. I'm just looking for a way to tell what type of card has been inserted in my reader. Is there a specific command that I could use ? For example, how can I tell if a MIFARE DESFire card has…
BastouP411
  • 19
  • 4
-1
votes
2 answers

Ubuntu does not recognize my smart card reader

I am using Ubuntu 18 and trying to write code to use a smart card. I am using ACS APG8201-b2 smart card reader, and I have installed the official driver (PC/SC Driver Package 3.04 MB, Version 1.1.8, 10-Jan-2020), and libpcsclite-dev. As a starting…
MJay
  • 987
  • 1
  • 13
  • 36
-1
votes
1 answer

Where can I find CVK (Card Verification Key) on EMV card?

I need to calculate the CVV code after reading an EMV card like Visa, Maestro and Mastercard with a smart card reader. All websites that allow you to calculate CVV require CVKa and CVKb, but I can't find them on smart card. I also need the 3DES…
Luca
  • 21
  • 6
-1
votes
1 answer

Can i write and read data to smart card using PCSC API?

I'm looking for smart card readers that can write and read data to/from the smart card. i found that many are using the PCSC API. Can PCSC allow me to write my own data to the card? (intending to write example user name user number to the card),…
user1157977
  • 907
  • 1
  • 11
  • 17
-1
votes
1 answer

Using PCSCD with ACR122U error

I try to use the ACR122U with PCSCD with mfcuk bu on my PCSCD terminal I have a recurrent error : 00400285 ccid_usb.c:747:WriteUSB() write failed (3/4): -1 LIBUSB_ERROR_IO 00000063 ifdwrapper.c:371:IFDStatusICC() Card not transacted: 612 00000034…
Cyprien Aubry
  • 641
  • 8
  • 19
-1
votes
2 answers

How to write specific data to a smart card using Python

In my project I'm trying to use a smart card for the purpose of creating digital signature for a specific data. I'm working with the smart card reader ACR38U-I1 and Linux OS (more precisely with the Raspbian OS) I already installed all the needed…
Tequila
  • 726
  • 7
  • 23
-1
votes
2 answers

SmartMX Hybrid Card - How to access MIFARE Classic

I have a bunch of hybrid smart cards with SmartMX chip (smartmx-m3b.03.d3-NX212A to be exact), which contain a MIFARE Classic 4k. I have been trying to access the MIFARE portion of the cards, and while doing so on Android is rather trivial task of…
iMan Biglari
  • 4,674
  • 1
  • 38
  • 83
-1
votes
1 answer

SIMcard applets development - hardware recommendations

I want to develop JavaCard 2.2.x applet, load to developer SIM card. I also need to connect to the SIM card through PCSC-Lite on Ubuntu (because of SEEK-FOR-ANDROID). However, I don't know what hardware should I buy...I've already bought few…
AGO
  • 133
  • 7
-9
votes
1 answer

How can i convert java byte array to hexadecimal array in java

i'm having an Android application which using byte array for APDU commands to a smart card eg : new CommandAPDU(new byte[]{(byte)0, (byte)-92, (byte)4, (byte)0, (byte)12, (byte)-96, (byte)0, (byte)0, (byte)2, (byte)0, (byte)19, (byte)0, (byte)0,…
Dilse
  • 31
  • 4
1 2 3
16
17