CVSROOT: /cvs Module name: src Changes by: [email protected] 2024/11/16 23:33:35
Modified files:
lib/libcrypto/ec: ec_lib.c
Log message:
Rewrite EC_GROUP_cmp()
Use better variable names (cf. https://jmilne.org/math/tips.html#4) and
avoid the weird style of assigning to r (what does r stand for anyway?)
and short circuiting subsequent tests using if (r || ...). Also, do not
reuse the variables for order and cofactor that were previously used for
the curve coefficients.
ok jsing
