EC_POINT_make_affine

Convert point to affine coordinates in group (deprecated).

Synopsis

Declared in <openssl/ec.h>

[[deprecated]]
int
EC_POINT_make_affine(
    EC_GROUP const* group,
    EC_POINT* point,
    BN_CTX* ctx);

WARNING

Deprecated. Use of this entity is allowed but discouraged.

Return Value

1 on success, or 0 on error.

Parameters

NameDescription
groupCurve that owns point.
pointPoint to convert in place.
ctxBN_CTX for temporary BIGNUMs, or NULL to allocate internally.