eliptic.h
来自「ECC的C++源码」· C头文件 代码 · 共 29 行
H
29 行
/****** eliptic.h *****//***************************************************************** ** These are structures used to create elliptic curve ** points and parameters. "form" is a just a fast way to check ** if a2 == 0. ** form equation ** ** 0 y^2 + xy = x^3 + a_6 ** 1 y^2 + xy = x^3 + a_2*x^2 + a_6 ** *****************************************************************/typedef struct { INDEX form; FIELD2N a2; FIELD2N a6;} CURVE;/* coordinates for a point */typedef struct { FIELD2N x; FIELD2N y;} POINT;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?