Doug Engert
Doug Engert
Go to search box type Language. It will point you at the language settings
Sorry. Yours looks like mine. English for both Windows Display Language and Prefered language. But OpenSC notify shows english.
I can get the German message "Smartcard kann jetzt vervendit" using a NitroKey Pro. The other german made card, a SmartCard-HSM uses English. It only used German for the smart...
This is not clear if this is a libp11 problem or in OpenSSL problem with the config file. I don't get any memory leaks on xubuntu-20.04 with the above command,...
What versions of libp11 and openssl are you using? These are the lines that look strange ``` ==513== by 0x4B1254F: EVP_PKEY_meth_new (pmeth_lib.c:174) ==513== by 0x5187679: pkcs11_pkey_method_rsa (p11_pkey.c:518) ==513== by 0x5187679:...
Just to make sure, check the opensc.cnf file. The one you sent did not list lines line these (with your path): ``` dynamic_path = /opt/smartcard/lib/engines/libpkcs11.so MODULE_PATH = /opt/smartcard/lib/opensc-pkcs11.so ``` It...
Are /usr/lib/engines-1.1/pkcs11.so and /usr/lib/libcryptoauth.so are not present on my Xubuntu-18.04 Did you build libp11 and install /usr/lib/engines-1.1/pkcs11.so? In master is also 5aa56b4ac45655aab20bd49bb918e649875b0f4d that deals with freeing new method. I am...
What I am seeing is a difference of valgrind versions. Your output shows version 3.15.0 which is on Ubuntu 20.04. Ubuntu 18.04 has 3.13.0. and does not show the leaks,...
Give https://github.com/OpenSC/libp11/pull/359 a try. On Ubuntu 20.04 shows no errors with this command: ``` valgrind -v --tool=memcheck --leak-check=full --keep-debuginfo=yes --show-leak-kinds=all openssl engine -t -tt -vvvv pkcs11 ``` ``` --9790-- Scanned...
I believe the main issue which needs to be addresses is: [1.6 Engines and "METHOD" APIs](https://wiki.openssl.org/index.php/OpenSSL_3.0#Engines_and_.22METHOD.22_APIs) " "METHODS" (for example EVP_MD_meth_new, EVP_CIPHER_meth_new, EVP_PKEY_meth_new, RSA_meth_new, EC_KEY_METHOD_new, etc.). These functions are being...