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
Avoid using DH_new() or d2i_DHparams_bio().
The path calling DH_new() creates an empty pkey. This is totally useless
on OpenSSL 3.0 because pkey instances are immutable.
Calling d2i_DHparams_bio() is not needed on OpenSSL 3.0. This format
should be handled by ossl_pkey_read_generic() already. Besides, it
creates a "legacy" pkey instance which prevents EVP_PKEY_todata() from
working properly.
0 commit comments