Javascript - key / certificate from USB Token

前端 未结 2 1308
粉色の甜心
粉色の甜心 2020-12-02 00:47

I would like to ask if is still impossible, using JavaScript, to get key from USB token or from certificate stored in Browser. I was readin

相关标签:
2条回答
  • 2020-12-02 01:23

    I think that with the Chrome Native Messaging implementations its possible. The native messaging implemented into Firefox and Edge too. Check this: https://github.com/open-eid/chrome-token-signing

    0 讨论(0)
  • 2020-12-02 01:41

    It is not possible for now. The WebCryptoApi does not support using keys stored in external keystores like smartcards, Mozilla keystore or Windows KeyStore (used by Chrome and Explorer), and reading the comments of the last conferences, it is not a current priority.

    There is another Javascript API specification of W3C to be used with Web Cryptography Api. See WebCrypto Key Discovery

    This note describes a JavaScript API for discovering named, origin-specific pre-provisioned cryptographic keys for use with the Web Cryptography API.

    Unfortunately is still a working group under development.

    0 讨论(0)
提交回复
热议问题