use BigUint;
use *;
use *;
// ===Issue #1===
// - Found on 12 Aug 2021
// The bug is that verification of small prime numbers does not work correctly. It also hangs when generating a 14 bit prime number.
// This affects both Verfication::is_prime() and Verification::is_composite() as is_composite simply is the inverse of the primality check
// The Bug is from the miller-rabin implementation. I cannot find out a fix.