Hi all,
thanks for the input so far.
What I have been playing with is something like this:
RSA_METHOD *meth = RSA_meth_dup(RSA_get_default_method()); RSA_meth_set1_name(meth, "myrsa");
RSA_meth_set_sign(meth, sign);
RSA_meth_set_verify(meth, verify);
RSA_set_default_method(meth);
with sign and verify being functions that I implemented.
But non of these two is ever invoked.
If I also set the init and final callbacks, they are properly executed.
Any ideas?
Br, Timo Von: openssl-users <openssl-users-bounces@xxxxxxxxxxx> im Auftrag von Dmitry Belyavsky <beldmit@xxxxxxxxx>
Gesendet: Montag, 11. Januar 2021 19:00 An: openssl-users@xxxxxxxxxxx <openssl-users@xxxxxxxxxxx> Betreff: Re: Sign without having the private key Dear Timo,
For 1.0* versions it was possible to provide custom RSA_METHOD and EC_METHOD and implement an IPC callback.
I think it still should work for 1.1.1
It may be also useful to take a look at the async API.
On Mon, Jan 11, 2021 at 6:56 PM Timo Lange <tiolangit@xxxxxxxxxxx> wrote:
SY, Dmitry Belyavsky
|