CVSROOT: /cvs Module name: src Changes by: [email protected] 2024/04/17 02:24:11
Modified files:
lib/libcrypto/evp: pmeth_gn.c
Log message:
Avoid NULL dereference in EVP_PKEY_paramgen()
If EVP_PKEY_new() returns NULL, it would be passed to the paramgen() pmeth
which would typically dereference it. This is identical to a recent change
in keygen().
ok jsing
