[#EC_POINT_cmp] = EC_POINT_cmp :mrdocs: Compares two EC_POINTs == Synopsis Declared in `<openssl/ec.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int EC_POINT_cmp( xref:EC_GROUP.adoc[EC_GROUP] const* group, xref:EC_POINT.adoc[EC_POINT] const* a, xref:EC_POINT.adoc[EC_POINT] const* b, xref:BN_CTX.adoc[BN_CTX]* ctx); ---- == Return Value 1 if the points are not equal, 0 if they are, or ‐1 on error == Parameters [cols="1,4"] |=== | Name| Description | *group* | underlying EC_GROUP object | *a* | first EC_POINT object | *b* | second EC_POINT object | *ctx* | BN_CTX object (optional) |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#