EC_POINT_set_affine_coordinates_GFp

Sets the affine coordinates of an EC_POINT. A synonym of EC_POINT_set_affine_coordinates

Synopsis

Declared in <openssl/ec.h>

[[deprecated]]
int
EC_POINT_set_affine_coordinates_GFp(
    EC_GROUP const* group,
    EC_POINT* p,
    BIGNUM const* x,
    BIGNUM const* y,
    BN_CTX* ctx);

WARNING

Deprecated. Use of this entity is allowed but discouraged.

Return Value

1 on success and 0 if an error occurred

Parameters

NameDescription
groupunderlying EC_GROUP object
pEC_POINT object
xBIGNUM with the x-coordinate
yBIGNUM with the y-coordinate
ctxBN_CTX object (optional)