Skip to content

Commit 1b01d19

Browse files
committed
pkey/rsa: fix usage of eRSAError
This is a follow-up to commit e74ff3e, which missed the line added in a different PR.
1 parent 1f4a5a5 commit 1b01d19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/openssl/ossl_pkey_rsa.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ ossl_rsa_verify_pss(int argc, VALUE *argv, VALUE self)
493493
case 1:
494494
return Qtrue;
495495
default:
496-
ossl_raise(eRSAError, "EVP_DigestVerifyFinal");
496+
ossl_raise(ePKeyError, "EVP_DigestVerifyFinal");
497497
}
498498

499499
err:

0 commit comments

Comments
 (0)