CVSROOT: /cvs Module name: src Changes by: t...@cvs.openbsd.org 2023/03/30 08:28:56
Modified files: lib/libcrypto/bn: bn_mul.c bn_sqr.c Log message: Call bn_copy() unconditionally in BN_mul() and BN_sqr() bn_copy() does the right thing if source and target are the same, so there is no need for an additional check. Requested by jsing