Hi Selva,
Thanks for your clear answer.
Regards
Tom
Temat: Re: Own HW Supported RSA provider
Data: 2024-07-20 19:08
Nadawca: "Selva Nair" <selva.n...@gmail.com>
Adresat:
DW: "openssl-users@openssl.org" <openssl-users@openssl.org>;
>
> On Fri, Jul 19,
On Fri, Jul 19, 2024 at 4:55 PM tomasz bartczak wrote:
> If I use the crypto library I can provide desired properties like in
> EVP_ASYM_CIPHER_fetch function. However when I use the ssl library, how to
> make sure it calls the mentioned EVP_ASYM_CIPHER_fetch function with
> properties required b
Hi Levitte,Thanks for your answer. Just follow up question.If I use the
crypto library I can provide desired properties like in EVP_ASYM_CIPHER_fetch
function. However when I use the ssl library, how to make sure it calls the
mentioned EVP_ASYM_CIPHER_fetch function with properties required by
You can give your implementation the property "provider=myname" and for
fetching, you can use the conditional property query string
"?provider=myname". That will ensure that, for whatever the app is
fetching, it will pick what your provider offers first, and fall back to
using stuff from any other
Hi,
I want to implement my own provider that enables RSA encryption using a HW
chip. OpenSSL already comes with default provider that provides RSA
implementation. Could you please explain to me how to add my own provider and
make sure it is selected over the one from default provider and still h