Sets the affine coordinates of an EC_POINT

Synopsis

Declared in <openssl/ec.h>

int
EC_POINT_set_affine_coordinates(
    EC_GROUP const* group,
    EC_POINT* p,
    BIGNUM const* x,
    BIGNUM const* y,
    BN_CTX* ctx);

Return Value

1 on success and 0 if an error occurred

Parameters

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)

Created with MrDocs