lujop
lujop

Reputation: 13883

Digital signature from electronic smartcard in Chrome

For an electronic prescription system, that runs on the browser and that requieres personal signature by the professional, we are using a Java applet to sign the XML request, that then is sended to a WS, using a smartcard.

But since version 42, Chrome is disabling by default NPAPI support, and in future versions next to September 2015 it will be completely disabled and then applets won't be usable at all.

At Chrome NPAPI deprecation page points to WebCrypto and TLS as alternatives. But it seems that WebCrypto has leaved out of scope the support of smartcards , and it seems that TLS is only about cryptographic protocols and it doesn't provides a way to use an electronic cards.

Has someone used a completely browser native solution to sign documents and have a good control of the process. At least it will be nedeed:

Upvotes: 13

Views: 5200

Answers (2)

Martin Paljak
Martin Paljak

Reputation: 4142

We faced the same problem, came up with a solution (native messaging, yes)

https://github.com/open-eid/chrome-token-signing

Upvotes: 8

jariq
jariq

Reputation: 12108

I am afraid there is no "browser native solution" but there is a Chrome specific native messaging you can use for that.

Upvotes: 5

Related Questions