Skip to content

Commit 3ca998f

Browse files
committed
chore: remove FIXME for legacy DSA key
1 parent bd640c2 commit 3ca998f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/pkey.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ pkey_has_private(EVP_PKEY *pkey)
6262
case EVP_PKEY_DSA: {
6363
ret = EVP_PKEY_get_bn_param(pkey, OSSL_PKEY_PARAM_PRIV_KEY, &bn);
6464
if (!ret || bn == NULL) {
65-
/* FIXME: OpenSSL 3.0 DSA priv key param not working? Fallback to legacy way */
65+
/*OpenSSL 3.0 DSA priv key param not working, Fallback to legacy way */
6666
DSA* dsa = (DSA*)EVP_PKEY_get0_DSA(pkey);
6767
if (dsa) {
6868
const BIGNUM* priv_key = NULL;

0 commit comments

Comments
 (0)