-
-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ability to define custom pkcs wrapper #81
Comments
Normally these wrappers have their own configuration and act as a passthrough, is your expectation that the additional param would be used to configure these wrapper libraries? |
I would like to connect to a PKCS#11 module (libsofthsm2 in the example) with the specified PKCS#11-wrapper native library (pkcs11wrapper.dll) and get an interface to it. |
Why not specify PKCS11wrapper.dll and configure it to call libsofthsm2? For example: |
well, you are definitely right but that would require too much work, for every pkcs module I should create a new dll. In the example you provided, we can create a jar which can be used with the library I referenced at main post. But that's the whole point for me as I am trying to run away from java :) This a really specific requirement, I am trying to migrate our e-sign reader from java app (a single jar) to an electron application and some countries have their own pkcs11 implementation. The e-signature providers in those countries only works with that modified lib ( I know that sucks ) and I was able to provide it in a single parameter with that java library. I am no expert of c++ but I thought it is doable in this library. EDIT: I ve used |
Could you share information about PKCS11 API you are needed? It'll help me to understand it's hard or not to implement it on C++ |
He isn’t looking for a PKCS11 library interface, he either wants us to provide a wrapper library for logging details or to configure another wrapper library. |
Have you seen FortifyApp.com and Verify.ink? |
@rmhrisk is right. I really feel very dumb, I didn't notice fortify. It looks promising and slick let me try it it out |
Also check out Hancock.ink |
It would be great to have the ability for defining custom pkcs wrapper.
For example: have a look at java lib
than we could use it like this:
The text was updated successfully, but these errors were encountered: