libp11 icon indicating copy to clipboard operation
libp11 copied to clipboard

PKCS#11 wrapper library

Results 48 libp11 issues
Sort by recently updated
recently updated
newest added

This is a suggested solution to the issue I describe in issue #527. By moving the decrement of `obj->refcnt` to _after_ the if-section for `obj->evp_key` the counter will not be...

We use libp11 in a chain like the following: `CST - OpenSSL - libpkcs11.so - yubihsm_pkcs11.so - YubiHSM 2` Where CST is i.MX Code Signing Tool, which is used to...

https://github.com/opendnssec/SoftHSMv2/issues/738

I am using libp11 as an engine for [osslsigncode](https://github.com/mtrojnar/osslsigncode) (openssl under the surface i suspect). When performing a sign operation, libp11 hangs in `p11_slot.c:pkcs11_get_session()`. Note that I am running this...

**Describe the bug** When calling the aws python SDK sample script 'pkcs11_connect.py' Samples: https://github.com/aws/aws-iot-device-sdk-python-v2/tree/main/samples Bug Also filed with AWS here: https://github.com/aws/aws-iot-device-sdk-python-v2/issues/561 the crypto element ATEC608B answers correctly and the provisioned...

Looks like test suite is failing with openssl 3.0.5 (with disabled EC like in Fedor). ```console make[2]: Leaving directory '/home/tkloczko/rpmbuild/BUILD/libp11-0.4.12/tests' /usr/bin/make check-TESTS make[3]: Entering directory '/home/tkloczko/rpmbuild/BUILD/libp11-0.4.12/tests' FAIL: rsa-testpkcs11.softhsm make[3]: Leaving...

Hi, I get an EVP_PKEY from the pkcs11 ENGINE using the following code: ``` ENGINE *e = ENGINE_by_id("pkcs11"); if(e == NULL) { printf("pkcs11 ENGINE is NULL\n"); return; } if(!ENGINE_init(e)) {...

Hi, I'm using libp11-0.4.12 and OpenSSL-1.1.1t against an nCipher HSM running client software version 12.81 and firmware version 12.72. I'm attempting to perform CMS ECDH-based decryption. Here's the basic decryption...

I have an issue with key pair generation. This simplified code: ```c void runSimplifiedTest(char* lib, char* passwd) { PKCS11_CTX* ctx = PKCS11_CTX_new(); PKCS11_CTX_load(ctx, lib); PKCS11_SLOT* slots = NULL; unsigned int...

We observed the following behaviour in version 0.4.12 when invoking `openssl dgst -engine pkcs11 -keyform engine -sign [...]` * When searching for private keys, this is done first attempted by...