[#EC_KEY_set_public_key_affine_coordinates] = EC_KEY_set_public_key_affine_coordinates :mrdocs: Sets a public key from affine coordinates performing necessary NIST PKV tests. == Synopsis Declared in `<openssl/ec.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] int EC_KEY_set_public_key_affine_coordinates( xref:EC_KEY.adoc[EC_KEY]* key, xref:BIGNUM.adoc[BIGNUM]* x, xref:BIGNUM.adoc[BIGNUM]* y); ---- [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 otherwise. == Parameters [cols="1,4"] |=== | Name| Description | *key* | the EC_KEY object | *x* | public key x coordinate | *y* | public key y coordinate |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#