Ludovic Rousseau
Ludovic Rousseau
No problem with Python 3.13.0 on macOS Sonoma 14.7.1. Problem is for macOS Sequoia 15 **and** Python 3.13. It is strange because it looks like a clang issue. Maybe Python...
I have no plans yet. But you can provide patches. That would help a lot.
The `KeyboardInterrupt` is blocked until the call to `C_WaitForSlotEvent()` returns to Python. For example you can also insert or remove a token to get unblocked. I don't know if it...
The only way to interrupt a `C_WaitForSlotEvent()` is to call `C_Finalize()`. Maybe a signal handler could do that? The problem is that the application that uses PyKCS11 may also want...
I don't think it is a good example code. `time.sleep()` can be interrupted by Ctrl-C. In your output I do not see the `"lib.C_Finalize() here"` message. Is the `print()` executed?...
`CK_EDDSA_PARAMS` is not defined or used in PyKCS11. So I would say it is not *yet* supported. Patches are welcome. It looks like `CKM_EDDSA` is supported by SoftHSM so implementation...
@totopr do you plan to propose a patch?