CVSROOT: /cvs Module name: src Changes by: js...@cvs.openbsd.org 2025/08/05 09:15:54
Modified files: lib/libcrypto/bn: bn_mod_words.c Log message: Speed up bn_{mod,sqr}_mul_words() for specific inputs. Use bn_{mul,sqr}_comba{4,6,8}() and bn_montgomery_reduce_words() for specific input sizes. This is significantly faster than using bn_montgomery_multiply_words(). ok tb@