Santiago De Vicente

Results 11 comments of Santiago De Vicente

Hi @kareem-wolfssl , Thanks for your quick response. Now I have defined these variables in user_settings.h. ```c #define WOLFSSL_EXPERIMENTAL_SETTINGS #define HAVE_LIBOQS #define WOLFSSL_HAVE_KYBER #define WOLFSSL_KYBER_ORIGINAL ``` I also defined the...

What I am using is the Quantum Protect simulator from Utimaco, but it's based on propietary software (it's free to use). I don't know any other pkcs11 providers with Vendor...

Indeed, I need to do cryptographic operations inside an HSM through a PKCS#11 provider. That is the reason I need libp11. The HSM supports PQC algorithms, OpenSSL supports PQC algorithms...

What I am using right now is the Utimaco HSM Simulator along with its PKCS#11 Connector https://support.hsm.utimaco.com/hsm-simulator I am not a direct employee of Utimaco so I cannot provide the...

There is not a lot of information with this output as the identifiers are defined by the backend crypto module instead of the pkcs11 module. In any case I will...

And for more information this is the output of a custom application I have for creating the keys. PKCS11_SPY: [pkcs11_spy_createkey.log](https://github.com/user-attachments/files/21136611/pkcs11_spy_createkey.log) Provider log: [cs_pkcs11_R3_createkey.log](https://github.com/user-attachments/files/21136615/cs_pkcs11_R3_createkey.log)

The thing is that the PKCS11 Connector doesnt have context of those identifiers, is a thing managed by the backend HSM (the PQC support is handled by a module installed...

> Where did you find the defines for MECH_ML_VDM, MECH_VDM_SIGN and CKM_MECH_MLDSA_SIGN? > > Only CKM_MECH_MLDSA_SIGN looks like a PKCS11 mechanism. > > PKCS11 Mechanisms are usually assigned sequentially. And...

I started creating a `p11_mldsa.c` so I have a `PKCS11_OBJECT_ops`. I tried to make the `static EVP_PKEY *pkcs11_get_evp_key_mldsa` in a non-deprecated way (as I dont have types like RSA). ```...

@mtrojnar I got to advance a little more and started following the indications you gave me. Right now I'm facing the following problem. I made a equivalent for MLDSA-44 for...