CVSROOT: /cvs Module name: src Changes by: t...@cvs.openbsd.org 2024/10/30 12:01:52
Modified files: lib/libcrypto/ec: ec_print.c Log message: Rewrite EC_POINT_bn2point() This is slightly asymmetric with EC_POINT_point2bn() and different from the other "print" functions since it has to deal with the asymmetry between BN_bin2bn() and BN_bn2bin() and allocate itself. Still, we can make this substantially shorter than it previously was. ok jsing