We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd640c2 commit 3ca998fCopy full SHA for 3ca998f
1 file changed
src/pkey.c
@@ -62,7 +62,7 @@ pkey_has_private(EVP_PKEY *pkey)
62
case EVP_PKEY_DSA: {
63
ret = EVP_PKEY_get_bn_param(pkey, OSSL_PKEY_PARAM_PRIV_KEY, &bn);
64
if (!ret || bn == NULL) {
65
- /* FIXME: OpenSSL 3.0 DSA priv key param not working? Fallback to legacy way */
+ /*OpenSSL 3.0 DSA priv key param not working, Fallback to legacy way */
66
DSA* dsa = (DSA*)EVP_PKEY_get0_DSA(pkey);
67
if (dsa) {
68
const BIGNUM* priv_key = NULL;
0 commit comments