CVSROOT: /cvs Module name: src Changes by: t...@cvs.openbsd.org 2025/02/03 22:09:54
Modified files: lib/libcrypto/bn: bn_recp.c Log message: Start cleaning up BN_div_reciprocal() a bit The fast path where no division is performed can be dealt with without BN_CTX, so do that up front so there's no need to clean up before return. Error check BN_CTX_get() on each use asd simplify the logic for optional input parameters. KNF for an ugly comment. ok jsing