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
Right now when a DER encoded key is being used in OpenSSL, we convert to PEM and then create an RSA object from the PEM data.
OpenSSL has d2i_PrivateKey_bio which can be used directly for DER data.
Investigate if it's a good idea to use that instead of only PEM.
The text was updated successfully, but these errors were encountered:
Right now when a DER encoded key is being used in OpenSSL, we convert to PEM and then create an RSA object from the PEM data.
OpenSSL has
d2i_PrivateKey_bio
which can be used directly for DER data.Investigate if it's a good idea to use that instead of only PEM.
The text was updated successfully, but these errors were encountered: