[#EC_POINT_make_affine] = EC_POINT_make_affine :mrdocs: Convert `point` to affine coordinates in `group` (deprecated). == Synopsis Declared in `<openssl/ec.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] int EC_POINT_make_affine( xref:EC_GROUP.adoc[EC_GROUP] const* group, xref:EC_POINT.adoc[EC_POINT]* point, 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, or 0 on error. == Parameters [cols="1,4"] |=== | Name| Description | *group* | Curve that owns `point.` | *point* | Point to convert in place. | *ctx* | BN_CTX for temporary BIGNUMs, or NULL to allocate internally. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#