Enum for the point conversion form as defined in X9.62 (ECDSA) for the encoding of a elliptic curve point (x,y)
Declared in <openssl/ec.h>
enum point_conversion_form_t;
| Name | Description |
|---|---|
POINT_CONVERSION_COMPRESSED | the point is encoded as z||x, where the octet z specifies which solution of the quadratic equation y is |
POINT_CONVERSION_UNCOMPRESSED | the point is encoded as z||x||y, where z is the octet 0x04 |
POINT_CONVERSION_HYBRID | the point is encoded as z||x||y, where the octet z specifies which solution of the quadratic equation y is |