CVSROOT: /cvs Module name: src Changes by: t...@cvs.openbsd.org 2021/12/05 06:45:26
Modified files: lib/libcrypto/dh: dh_check.c Log message: Simplify DH_check_params a bit. It makes no sense to allocate an entire BN_CTX if we only use it to get a single BIGNUM, from which we subtract 1 to compare it to g. We can just use a plain BIGNUM and delete a bunch of lines. ok inoguchi jsing