X.509 Digital Signatures/Encryption workflow/library recommendations?

前端 未结 3 1958
挽巷
挽巷 2021-01-20 03:33

My particular use case is that I have to access digital certificates stored on the client, and use them to perform tasks of signing, verifying, encryption and decryption on

相关标签:
3条回答
  • 2021-01-20 04:07

    My best bet would still be an applet since that's possibly the most cross-platform thing. Alternately, I can develop my own activeX and limiting my reach.

    Remember that client side certificate access is big security thing.

    0 讨论(0)
  • 2021-01-20 04:08

    [Disclosure: I work for CoSign]

    A secure alternative to storing the certs on the clients is to store them on a secure, centralized SSCD (Secure Signature Creation Device). A problem with local certs (smart cards, etc) is to use them securely in client/server or web-based applications.

    A centralized SSCD takes care of the issue very neatly. The user still needs to authenticate himself to the SSCD, but the SSCD itself holds the certs and does the signing. The authentication step can include 2-factor authentication including One Time Passords (OTP), biometrics, etc. We have customers doing all that.

    The idea is to have secure client authentication but keep the secure signing centralized as a service on the network.

    See this description. Also available as a cloud-based solution.

    ps, This answer covers the slightly more general question of how to securely sign in a web-based application. I agree that it does not cover the specific question of signing by using a user's smart card or client alternative (the OP was deliberately vague).

    0 讨论(0)
  • 2021-01-20 04:14

    Our SecureBlackbox library has a distributed cryptography add-on which does what you need. Currently client-side modules do signing but can be extended by the user (we provide complete source code). You will find detailed description of the add-on on our site or in this SO answer.

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