CVSROOT: /cvs Module name: src Changes by: js...@cvs.openbsd.org 2025/03/24 06:49:13
Modified files: lib/libcrypto/ec: ec_lib.c Log message: Check group generator in EC_POINT_mul(). When a non-NULL generator scalar is passed to EC_POINT_mul(), the group's generator will be used in multiplication. Add a check that ensures that the group generator is non-NULL, in order to avoid needing to handle this elsewhere (currently in the lower level point multiplication code). ok tb@