CVSROOT: /cvs Module name: src Changes by: js...@cvs.openbsd.org 2025/01/22 02:56:58
Modified files: lib/libcrypto/ec: ec_lib.c ec_local.h ecp_methods.c Log message: Remove the mul_generator_ct function pointer from EC_METHOD. There's no need for a separate mul_generator_ct() function pointer - we really only need mul_single_ct() and mul_double_nonct(). And rather than calling ec_mul_ct() and having it figure out which point to use, explicitly pass the generator point when calling mul_single_ct(). ok tb@