TheAlgorithms/C++ 1.0.0
All the algorithms implemented in C++
|
Definition of struct Point. More...
Public Member Functions | |
bool | operator== (const Point &p) |
x and y co-ordinates | |
Public Attributes | |
uint256_t | x |
uint256_t | y |
Friends | |
std::ostream & | operator<< (std::ostream &op, const Point &p) |
ostream operator for printing Point | |
Definition of struct Point.
Definition of Point in the curve.
Definition at line 46 of file elliptic_curve_key_exchange.cpp.
|
inline |
x and y co-ordinates
operator == for Point
check whether co-ordinates are equal to the given point
p | given point to be checked with this |
Definition at line 55 of file elliptic_curve_key_exchange.cpp.
|
friend |
ostream operator for printing Point
op | ostream operator |
p | Point to be printed on console |
Definition at line 63 of file elliptic_curve_key_exchange.cpp.
uint256_t ciphers::elliptic_curve_key_exchange::Point::x |
Definition at line 47 of file elliptic_curve_key_exchange.cpp.
uint256_t ciphers::elliptic_curve_key_exchange::Point::y |
Definition at line 47 of file elliptic_curve_key_exchange.cpp.