You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is recommended that we use EVP functions instead of RSA and EVP functions take in EVP keys. Right now I am converting the RSA key into EVP every time I want to use to use it. This is inefficient.
// convert RSA key to EVP
let evp_key = EVP_PKEY_new()
EVP_PKEY_set1_RSA(evp_key, key.reference)
The text was updated successfully, but these errors were encountered:
It is recommended that we use EVP functions instead of RSA and EVP functions take in EVP keys. Right now I am converting the RSA key into EVP every time I want to use to use it. This is inefficient.
The text was updated successfully, but these errors were encountered: