EC_POINTs_make_affine

Convert an array of EC_POINT objects to affine coordinates (deprecated).

Synopsis

Declared in <openssl/ec.h>

[[deprecated]]
int
EC_POINTs_make_affine(
    EC_GROUP const* group,
    size_t num,
    EC_POINT* points[],
    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 the points.
numNumber of entries in points.
pointsArray of num points converted in place.
ctxBN_CTX for temporary BIGNUMs, or NULL to allocate internally.