Parallels Proxy CCID Reader - doesn't return reader features

Krzysztof7

Bit poster
Hi.

J have smartcard reader cyberJack® RFID komfort (USB) .
On The host machine reader this reader is detected as pinpad reader so that pins can be entered on its keyboard.
On virtual machine "Parallels Proxy CCID reader" does report pinpad function, I have to enter the pins in the application, which is less secure.

I would like the code below to return the same result on the host and guest machines
#define IOCTL_GET_FEATURE_REQUEST SCARD_CTL_CODE(3400)
SCardControl(priv->hCard, IOCTL_GET_FEATURE_REQUEST, NULL, 0, feature_buf, sizeof(feature_buf), &feature_len);

The valid features for my device are
FEATURE_EXECUTE_PACE (0x20),
FEATURE_VERIFY_PIN_DIRECT (0x6) ,
FEATURE_MODIFY_PIN_DIRECT (0x7)
FEATURE_IFD_PIN_PROPERTIES (0xA)
 
Back
Top