CVSROOT: /cvs Module name: src Changes by: js...@cvs.openbsd.org 2023/03/07 02:35:55
Modified files: lib/libcrypto/bn: bn_internal.h Log message: Slightly rework bn_mulw_addtw(). Call bn_mulw_addw() rather than doing bn_mulw() follow by bn_addw(). This simplifies the code slightly, plus on some platforms bn_mulw_addw() can be optimised (and bn_mulw_addtw() will then benefit from such an optimisation). ok tb@