[#EC_POINT_is_on_curve] = EC_POINT_is_on_curve :mrdocs: Checks whether the point is on the curve == Synopsis Declared in `<openssl/ec.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int EC_POINT_is_on_curve( xref:EC_GROUP.adoc[EC_GROUP] const* group, xref:EC_POINT.adoc[EC_POINT] const* point, xref:BN_CTX.adoc[BN_CTX]* ctx); ---- == Return Value 1 if the point is on the curve, 0 if not, or ‐1 on error == Parameters [cols="1,4"] |=== | Name| Description | *group* | underlying EC_GROUP object | *point* | EC_POINT object to check | *ctx* | BN_CTX object (optional) |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#