Hi All,
We are upgrading our code to openssl 3.0. the below function we trying to
replace, searched in the openssl man pages not found proper information.
CRYPTO_thread_id()
ERR_get_error_line_data()
please suggest.
thanks,
shivakumar.
Notice: This e-mail together with any attachments may
On Thu, Sep 02, 2021 at 05:21:22PM -0600, Shariful Alam wrote:
> Is there any command-line tool to get the plain text rsa private key like
> the following format from .pem file?
Yes, if you're willing to tolerate slightly different labels and ":"
every two nibbles.With slightly different labels a
Hello,
Is there any command-line tool to get the plain text rsa private key like
the following format from .pem file?
N =
D0C2ACDCF780B1E4846054BDA700F18D567247FE8BC5BA4FBCAB814E619DA63A20F65A58EE89FC0824DC9367C5725BDDC596065F1C8868E99C896F3A0CF7D7F0A785E668F2568F19BAFB8FF3BA5CDF487544EFE71010BEDB
I have code that applies PCKS1.5 padding via
RSA_padding_add_PKCS1_type_1 and strips it with
RSA_padding_check_PKCS1_type_2 before sending it to the HSM for raw
RSA operation to support a legacy PKCS11 interface. Is there any way
to perform these tasks with OpenSSL 3.0?
Thanks,
Bill
On 02/09/2021 16:43, Romain GEISSLER via openssl-users wrote:
I am using the following OpenSSL API: EVP_DigestSignInit,
EVP_DigestVerifyInit, EVP_PKEY_size, EVP_SealInit, EVP_OpenInit. And
it seems these all take an non-const EVP_PKEY* argument. Does it mean
that EVP_PKEY* have some internal s
Hi,
I have some piece of software using OpenSSL that works right now on a single
thread right now. I am adding a bit more "const" in the code everywhere I can
as we want to start using the same code in multithreaded environment, and
potentially two threads might sign/verify/encrypt/decrypt usin