CVSROOT: /cvs Module name: src Changes by: t...@cvs.openbsd.org 2024/10/30 11:52:34
Modified files: lib/libcrypto/ec: ec_local.h ec_oct.c Log message: Provide ec_point_from_octets() This is a wrapper that is the reverse of ec_point_to_octets(). It is a bit simpler since EC_POINT_oct2point() expects the point to be allocated already. It also hands back the correctly parsed point conversion form so that we don't have to do this by hand in a few places. ok jsing