[#EC_POINT_set_affine_coordinates_GFp] = EC_POINT_set_affine_coordinates_GFp :mrdocs: Sets the affine coordinates of an EC_POINT. A synonym of EC_POINT_set_affine_coordinates == Synopsis Declared in `<openssl/ec.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] int EC_POINT_set_affine_coordinates_GFp( xref:EC_GROUP.adoc[EC_GROUP] const* group, xref:EC_POINT.adoc[EC_POINT]* p, xref:BIGNUM.adoc[BIGNUM] const* x, xref:BIGNUM.adoc[BIGNUM] const* y, 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 1 on success and 0 if an error occurred == Parameters [cols="1,4"] |=== | Name| Description | *group* | underlying EC_GROUP object | *p* | EC_POINT object | *x* | BIGNUM with the x‐coordinate | *y* | BIGNUM with the y‐coordinate | *ctx* | BN_CTX object (optional) |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#