Skip to content

Commit

Permalink
Update openssl_help.h
Browse files Browse the repository at this point in the history
  • Loading branch information
FajoX1 authored Nov 1, 2024
1 parent 75fe425 commit a275d1e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion base/openssl_help.h
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,11 @@ class BigNum {
return false;
}
// constexpr auto kMillerRabinIterationCount = 64;
const auto result = BN_check_prime(raw());
const auto result = BN_check_prime(
raw(),
context.raw(),
nullptr
);

if (result == 1) {
return true;
Expand Down

0 comments on commit a275d1e

Please sign in to comment.