[#EC_POINT_point2buf] = EC_POINT_point2buf :mrdocs: Encodes an EC_POINT object to an allocated octet string == Synopsis Declared in `<openssl/ec.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- size_t EC_POINT_point2buf( xref:EC_GROUP.adoc[EC_GROUP] const* group, xref:EC_POINT.adoc[EC_POINT] const* point, point_conversion_form_t form, unsigned char** pbuf, xref:BN_CTX.adoc[BN_CTX]* ctx); ---- == Return Value the length of the encoded octet string or 0 if an error occurred == Parameters [cols="1,4"] |=== | Name| Description | *group* | underlying EC_GROUP object | *point* | EC_POINT object | *form* | point conversion form | *pbuf* | returns pointer to allocated buffer | *ctx* | BN_CTX object (optional) |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#