Frank Morgner

Results 589 comments of Frank Morgner

I do not have a lot of advices other than what you already seem to know. the command vicc cannot connect to the local socket 35963, which could be blocked...

Yes, HID is not for smart cards (there is USB CCID for that). But to trigger `SmartCardServices` it's possible to use any physical USB device, only the vendor and product...

WebUSB has been disabled in Chrome for CCID for security reasons in [2018](https://www.yubico.com/support/issue-rating-system/security-advisories/ysa-2018-02/#h-timeline). You may either craft a USB device for WebUSB encapsulating CCID via HID, for example, or you...

The third option would be to create a (native) client side application which exposes the reader/card to the server, for example by means of a websocket.

@martinpaljak what's the status, did you abandon this project?

I see. Maybe adding some note in the README.md would be a good idea. By the way, for F-Droid, which discourages pre-built JARs, I still use vJCRE as replacement for...

Just stumbled across this; a bug report would have been nice... Anyway, it's fixed in OpenSC with https://github.com/OpenSC/OpenSC/pull/1232

I forgot to mention that unplugging the token or restart pcscd makes the token available again. However, executing the same commands causes the problem, again.

See https://github.com/CardContact/opensc-java, it includes Android Makefiles

Switching to libc++ in OpenSC.tokend requires the use of `unordered_map` instead of `hash_map`: ```diff @@ -33,14 +33,15 @@ #include #include +#if __GNUC__ > 4 #include - -#if __GNUC__ > 2...