CVSROOT: /cvs Module name: src Changes by: t...@cvs.openbsd.org 2024/10/22 15:10:45
Modified files: lib/libcrypto/ec: ecp_oct.c Log message: Rewrite ec_GFp_simple_point2oct() using CBB Factor ad-hoc inline code into helper functions. Use CBB and BN_bn2binpad() instead of batshit crazy skip loops and pointer banging. With all this done, the function becomes relatively streamlined and pretty much symmetric with the new oct2point() implementation. ok jsing