📄 ecn.h
字号:
/*
* MIRACL C++ Header file ecn.h
*
* AUTHOR : M. Scott
*
* PURPOSE : Definition of class ECn (Arithmetic on an Elliptic Curve,
* mod n)
*
* NOTE : Must be used in conjunction with ecn.cpp and big.cpp
* The active curve is set dynamically (via the Big ecurve()
* routine) - so beware the pitfalls implicit in declaring
* static or global ECn's (which are initialised before the
* curve is set!). Uninitialised data is OK
*
* Copyright (c) 1988-2004 Shamus Software Ltd.
*/
#ifndef ECN_H
#define ECN_H
#include "big.h"
#ifdef ZZNS
#define MR_INIT_ECN memset(mem,0,mr_ecp_reserve(1,ZZNS)); p=(epoint *)epoint_init_mem_variable(mem,0,ZZNS);
#else
#define MR_INIT_ECN mem=(char *)ecp_memalloc(1); p=(epoint *)epoint_init_mem(mem,0);
#endif
class ECn
{
epoint *p;
#ifdef ZZNS
char mem[mr_ecp_reserve(1,ZZNS)];
#else
char *mem;
#endif
public:
ECn() {MR_INIT_ECN }
ECn(const Big &x,const Big& y) {MR_INIT_ECN
epoint_set(x.getbig(),y.getbig(),0,p); }
// This next constructor restores a point on the curve from "compressed"
// data, that is the full x co-ordinate, and the LSB of y (0 or 1)
#ifndef MR_SUPPORT_COMPRESSION
ECn(const Big& x,int cb) {MR_INIT_ECN
epoint_set(x.getbig(),x.getbig(),cb,p); }
#endif
ECn(const ECn &b) {MR_INIT_ECN epoint_copy(b.p,p);}
epoint *get_point() const;
int get_status() {return p->marker;}
ECn& operator=(const ECn& b) {epoint_copy(b.p,p);return *this;}
ECn& operator+=(const ECn& b) {ecurve_add(b.p,p); return *this;}
big add(const ECn& b) {return ecurve_add(b.p,p); }
// returns line slope as a big
big sub(const ECn& b) {return ecurve_sub(b.p,p); }
ECn& operator-=(const ECn& b) {ecurve_sub(b.p,p); return *this;}
// Multiplication of a point by an integer.
ECn& operator*=(const Big& k) {ecurve_mult(k.getbig(),p,p); return *this;}
void clear() {epoint_set(NULL,NULL,0,p);}
BOOL set(const Big& x,const Big& y) {return epoint_set(x.getbig(),y.getbig(),0,p);}
BOOL iszero() const;
int get(Big& x,Big& y) const;
// This gets the point in compressed form. Return value is LSB of y-coordinate
int get(Big& x) const;
// get raw coordinates
void getx(Big &x) const;
void getxy(Big &x,Big &y) const;
void getxyz(Big &x,Big &y,Big &z) const;
// point compression
// This sets the point from compressed form. cb is LSB of y coordinate
#ifndef MR_SUPPORT_COMPRESSION
BOOL set(const Big& x,int cb=0) {return epoint_set(x.getbig(),x.getbig(),cb,p);}
#endif
friend ECn operator-(const ECn&);
friend void multi_add(int,ECn *,ECn *);
friend void double_add(ECn&,ECn&,ECn&,ECn&,big&,big&);
friend ECn mul(const Big&, const ECn&, const Big&, const ECn&);
friend ECn mul(int, const Big *, ECn *);
friend void normalise(ECn &e) {epoint_norm(e.p);}
friend BOOL operator==(const ECn& a,const ECn& b)
{return epoint_comp(a.p,b.p);}
friend BOOL operator!=(const ECn& a,const ECn& b)
{return (!epoint_comp(a.p,b.p));}
friend ECn operator*(const Big &,const ECn&);
#ifndef MR_NO_STANDARD_IO
friend ostream& operator<<(ostream&,const ECn&);
#endif
~ECn() {
#ifndef ZZNS
mr_free(mem);
#endif
}
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -