CVSROOT: /cvs Module name: src Changes by: t...@cvs.openbsd.org 2024/10/30 00:10:35
Modified files: lib/libcrypto/ec: ec_local.h ec_oct.c Log message: Add a convenience wrapper for EC_POINT_point2oct() EC_POING_point2oct() is annoying to use since its invocation involves two calls: one to determine the space to allocate and one to pass the buffer and perform the actual conversion. Wrap this dance in a helper with the correct signature. ok jsing