-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use EVP_PKEY for RSA public key operations #50668
Conversation
Also change the storage model to SafeEvpPKeyHandle, only import and export use legacy SafeRsaHandle.
Tagging subscribers to this area: @bartonjs, @vcsjones, @krwq, @GrabYourPitchforks Issue DetailsThis also changes the primary storage model for RSAOpenSsl to be a SafeEvpPKeyHandle, Contributes to #46526.
|
This also changes the primary storage model for RSAOpenSsl to be a SafeEvpPKeyHandle,
instead of the legacy SafeRsaHandle. SafeRsaHandle is still used for import, export, and the
IntPtr
-based ctor in the public RSAOpenSsl class.Contributes to #46526.