LibCrypto: Remove unused big numbers random and primality functions

Remove `random_number`, `is_probably_prime` and `random_big_prime` as
they are unused.
This commit is contained in:
devgianlu 2025-04-25 21:01:05 +02:00 committed by Jelle Raaijmakers
commit 14387e5411
Notes: github-actions[bot] 2025-04-28 10:07:00 +00:00
3 changed files with 0 additions and 185 deletions

View file

@ -41,8 +41,4 @@ static IntegerType Power(IntegerType const& b, IntegerType const& e)
UnsignedBigInteger GCD(UnsignedBigInteger const& a, UnsignedBigInteger const& b);
UnsignedBigInteger LCM(UnsignedBigInteger const& a, UnsignedBigInteger const& b);
UnsignedBigInteger random_number(UnsignedBigInteger const& min, UnsignedBigInteger const& max_excluded);
bool is_probably_prime(UnsignedBigInteger const& p);
UnsignedBigInteger random_big_prime(size_t bits);
}