Skip to content

Commit 87ae631

Browse files
rheniummatzbot
authored andcommitted
[ruby/openssl] pkey/rsa: fix usage of eRSAError
This is a follow-up to commit ruby/openssl@e74ff3e2722f, which missed the line added in a different PR. ruby/openssl@1b01d19456
1 parent 16b1aa4 commit 87ae631

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)