[#EC_POINT_set_compressed_coordinates] = EC_POINT_set_compressed_coordinates :mrdocs: Sets the x9.62 compressed coordinates of a EC_POINT == Synopsis Declared in `<openssl/ec.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int EC_POINT_set_compressed_coordinates( xref:EC_GROUP.adoc[EC_GROUP] const* group, xref:EC_POINT.adoc[EC_POINT]* p, xref:BIGNUM.adoc[BIGNUM] const* x, int y_bit, xref:BN_CTX.adoc[BN_CTX]* ctx); ---- == Return Value 1 on success and 0 if an error occurred == Parameters [cols="1,4"] |=== | 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) |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#