Compares two EC_POINTs
Declared in <openssl/ec.h>
int
EC_POINT_cmp(
EC_GROUP const* group,
EC_POINT const* a,
EC_POINT const* b,
BN_CTX* ctx);
1 if the points are not equal, 0 if they are, or -1 on error
| Name | Description |
|---|---|
| group | underlying EC_GROUP object |
| a | first EC_POINT object |
| b | second EC_POINT object |
| ctx | BN_CTX object (optional) |