Package Cryptodome :: Package PublicKey :: Module ECC :: Class EccPoint

Class EccPoint

object --+
         |
        EccPoint

A class to abstract a point over an Elliptic Curve.
Instance Methods
 
set(self, point)
 
copy(self)
 
is_point_at_infinity(self)
 
double(self)
Double this point

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __init__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Static Methods
 
point_at_infinity()
Properties
  x
The X-coordinate of the ECC point
  y
The Y-coordinate of the ECC point

Inherited from object: __class__

Property Details

x

The X-coordinate of the ECC point
Get Method:
unreachable.x(self) - The X-coordinate of the ECC point

y

The Y-coordinate of the ECC point
Get Method:
unreachable.y(self) - The Y-coordinate of the ECC point