Sets the jacobian projective coordinates of a EC_POINT over GFp
Declared in <openssl/ec.h>
[[deprecated]]
int
EC_POINT_set_Jprojective_coordinates_GFp(
EC_GROUP const* group,
EC_POINT* p,
BIGNUM const* x,
BIGNUM const* y,
BIGNUM const* z,
BN_CTX* ctx);
Deprecated. Use of this entity is allowed but discouraged.
1 on success and 0 if an error occurred
| Name | Description |
|---|---|
| group | underlying EC_GROUP object |
| p | EC_POINT object |
| x | BIGNUM with the x-coordinate |
| y | BIGNUM with the y-coordinate |
| z | BIGNUM with the z-coordinate |
| ctx | BN_CTX object (optional) |