Replies: 1 comment
-
Bleah, they are buggy, they should just ignore the callbacks ... |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I am trying to integrate the pkcs11 provider with AWS CloudHSM
I've added the pkcs11 provider to the OpenSSL config and, at first, everything seemed to go fine, but I was unable to perform any operations with it.
The debug logs indicate that the issue occurs in
C_OpenSession
Logs from
libcloudhsm_pkcs11.so
:It looks like the implementation of PKCS11 from AWS does not support callbacks in the C_OpenSession.
I've tried to update the
token_session_open
function insrc/session.c:70
to set NULL values forpApplication
andNotify
(also added a new 'quirk' for that).Everything seems to work with that change, but I'm not sure about other implications. Is there
Can somebody advice if this is a viable solution?
Beta Was this translation helpful? Give feedback.
All reactions