On Tue, Jun 1, 2021 at 11:15 AM Selva Nair <selva.nair@xxxxxxxxx> wrote: > > Hi Piotr, > > On Tue, Jun 1, 2021 at 10:57 AM Piotr Lobacz <piotr.lobacz@xxxxxxxxxxxx> wrote: >> >> Hi, >> i have managed to find the engine method static EVP_PKEY *load_privkey(ENGINE *engine, const char *s_key_id, UI_METHOD *ui_method, void *callback_data) in libp11 package. I have also made a printf callback and i see the output that method is being called, but the problem is that i think i need to set this flag RSA_FLAG_EXT_PKEY in EVP_PKEY object which i don't know how to do is it even possible? > > > The flag on the key is always set by libp11 (look for RSA_set_key in p11_rsa.c). Read that as RSA_set_flags, not RSA_set_key selva