Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
prince-chrismc committed Dec 21, 2023
1 parent ae7761c commit 766d213
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/jwks-verify.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ int main() {
BIGNUM* e = nullptr;
EVP_PKEY_get_bn_param(pkey, "e", &e);
#else
RSA* \\r = EVP_PKEY_get1_RSA(pkey);
RSA* r = EVP_PKEY_get1_RSA(pkey);
const BIGNUM* n = RSA_get0_n(r);
const BIGNUM* e = RSA_get0_e(r);
#endif
Expand Down

0 comments on commit 766d213

Please sign in to comment.