CVSROOT: /cvs Module name: src Changes by: t...@cvs.openbsd.org 2022/07/19 10:19:19
Modified files: lib/libcrypto/bn: bn_prime.c Log message: Avoid unnecessary loops in BN_generate_prime_ex() Since there is nothing randomized in bn_is_prime_bpsw(), the concept of rounds makes no sense. Apply a minimal change for now that avoids expensive loops that won't change the outcome in case we found a probable prime. ok jsing