Sets the x9.62 compressed coordinates of a EC_POINT. A synonym of EC_POINT_set_compressed_coordinates
Declared in <openssl/ec.h>
[[deprecated]]
int
EC_POINT_set_compressed_coordinates_GFp(
EC_GROUP const* group,
EC_POINT* p,
BIGNUM const* x,
int y_bit,
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 x-coordinate |
| y_bit | integer with the y-Bit (either 0 or 1) |
| ctx | BN_CTX object (optional) |