[#EC_KEY_set_public_key] = EC_KEY_set_public_key :mrdocs: Sets the public key of a EC_KEY object. == Synopsis Declared in `<openssl/ec.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] int EC_KEY_set_public_key( xref:EC_KEY.adoc[EC_KEY]* key, xref:EC_POINT.adoc[EC_POINT] const* pub); ---- [WARNING] ==== https://en.cppreference.com/cpp/language/attributes/deprecated[Deprecated^]. Use of this entity is allowed but discouraged. ==== == Return Value 1 on success and 0 if an error occurred. == Parameters [cols="1,4"] |=== | Name| Description | *key* | EC_KEY object | *pub* | EC_POINT object with the public key (note: the EC_KEY object will use an own copy of the EC_POINT object). |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#