下你所需,载你所想!
汇集开发技术源码资料

ECC椭圆曲线加密算法c语言实现

:2.714KB :1 :2022-09-29 15:12:59

部分简介

ECC椭圆曲线加密算法c语言实现如果开发者对于本文件有需要的可以参考。ECC椭圆曲线加密算法c语言实现
#include

#include
int xy[22];

#define N 23
#define A 1
//#define M 29
#define a1 1
#define b1 4
typedef struct point {
int x;
int y;
}Point;
typedef struct ecc {
struct point p[100];
int len;
}ECCPoint;
typedef struct generator {

热门推荐

相关文章