[][src]Module elliptic_curve::weierstrass::point

Compressed and uncompressed Weierstrass elliptic curve points.

Serialized according to the Elliptic-Curve-Point-to-Octet-String algorithm described in SEC 1: Elliptic Curve Cryptography (Version 2.0) section 2.3.3 (page 10):

https://www.secg.org/sec1-v2.pdf

Structs

CompressedCurvePoint

Compressed elliptic curve points serialized according to the Elliptic-Curve-Point-to-Octet-String algorithm.

UncompressedCurvePoint

Uncompressed elliptic curve points serialized according to the Elliptic-Curve-Point-to-Octet-String algorithm.

Type Definitions

CompressedPointSize

Size of a compressed elliptic curve point for the given curve when serialized using Elliptic-Curve-Point-to-Octet-String encoding (including leading 0x02 or 0x03 tag byte).

UncompressedPointSize

Size of an uncompressed elliptic curve point for the given curve when serialized using the Elliptic-Curve-Point-to-Octet-String encoding (including leading 0x04 tag byte).