[#EC_KEY_key2buf] = EC_KEY_key2buf :mrdocs: Encodes an EC_KEY public key to an allocated octet string == Synopsis Declared in `<openssl/ec.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] size_t EC_KEY_key2buf( xref:EC_KEY.adoc[EC_KEY] const* key, point_conversion_form_t form, unsigned char** pbuf, xref:BN_CTX.adoc[BN_CTX]* ctx); ---- [WARNING] ==== https://en.cppreference.com/cpp/language/attributes/deprecated[Deprecated^]. Use of this entity is allowed but discouraged. ==== == Return Value the length of the encoded octet string or 0 if an error occurred == Parameters [cols="1,4"] |=== | Name| Description | *key* | key to encode | *form* | point conversion form | *pbuf* | returns pointer to allocated buffer | *ctx* | BN_CTX object (optional) |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#