-
Notifications
You must be signed in to change notification settings - Fork 20
/
ec.sol
178 lines (145 loc) · 4.48 KB
/
ec.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
pragma solidity ^0.4.2;
contract EC {
uint256 constant gx = 0x79BE667EF9DCBBAC55A06295CE870B07029BFCDB2DCE28D959F2815B16F81798;
uint256 constant gy = 0x483ADA7726A3C4655DA4FBFC0E1108A8FD17B448A68554199C47D08FFB10D4B8;
uint256 constant n = 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFC2F;
uint256 constant a = 0;
uint256 constant b = 7;
function EC()
{
}
function _jAdd( uint256 x1,uint256 z1,
uint256 x2,uint256 z2) constant
returns(uint256 x3,uint256 z3)
{
(x3, z3) = ( addmod( mulmod(z2, x1 , n) ,
mulmod(x2, z1 , n),
n),
mulmod(z1, z2 , n)
);
}
function _jSub( uint256 x1,uint256 z1,
uint256 x2,uint256 z2) constant
returns(uint256 x3,uint256 z3)
{
(x3, z3) = ( addmod( mulmod(z2, x1, n),
mulmod(n - x2, z1, n),
n),
mulmod(z1, z2 , n)
);
}
function _jMul( uint256 x1,uint256 z1,
uint256 x2,uint256 z2) constant
returns(uint256 x3,uint256 z3)
{
(x3, z3) = ( mulmod(x1, x2 , n), mulmod(z1, z2 , n));
}
function _jDiv( uint256 x1,uint256 z1,
uint256 x2,uint256 z2) constant
returns(uint256 x3,uint256 z3)
{
(x3, z3) = ( mulmod(x1, z2 , n), mulmod(z1 , x2 , n));
}
function _inverse( uint256 a) constant
returns(uint256 invA)
{
uint256 t=0;
uint256 newT=1;
uint256 r=n;
uint256 newR=a;
uint256 q;
while (newR != 0) {
q = r / newR;
(t, newT) = (newT, addmod(t , (n - mulmod(q, newT,n)) , n));
(r, newR) = (newR, r - q * newR );
}
return t;
}
function _ecAdd( uint256 x1,uint256 y1,uint256 z1,
uint256 x2,uint256 y2,uint256 z2) constant
returns(uint256 x3,uint256 y3,uint256 z3)
{
uint256 l;
uint256 lz;
uint256 da;
uint256 db;
if ((x1==0)&&(y1==0)) {
return (x2,y2,z2);
}
if ((x2==0)&&(y2==0)) {
return (x1,y1,z1);
}
if ((x1==x2)&&(y1==y2)) {
(l,lz) = _jMul(x1, z1, x1, z1);
(l,lz) = _jMul(l, lz, 3, 1);
(l,lz) = _jAdd(l, lz, a, 1);
(da,db) = _jMul(y1, z1, 2, 1);
} else {
(l,lz) = _jSub(y2, z2, y1, z1);
(da,db) = _jSub(x2, z2, x1, z1);
}
(l, lz) = _jDiv(l, lz, da, db);
(x3, da) = _jMul(l, lz, l, lz);
(x3, da) = _jSub(x3, da, x1, z1);
(x3, da) = _jSub(x3, da, x2, z2);
(y3, db) = _jSub(x1, z1, x3, da);
(y3, db) = _jMul(y3, db, l, lz );
(y3, db) = _jSub(y3, db, y1, z1 );
if (da != db) {
x3 = mulmod(x3, db, n);
y3 = mulmod(y3, da, n);
z3 = mulmod(da, db, n);
} else {
z3 = da;
}
}
function _ecDouble(uint256 x1,uint256 y1,uint256 z1) constant
returns(uint256 x3,uint256 y3,uint256 z3)
{
(x3,y3,z3) = _ecAdd(x1,y1,z1,x1,y1,z1);
}
function _ecMul(uint256 d, uint256 x1,uint256 y1,uint256 z1) constant
returns(uint256 x3,uint256 y3,uint256 z3)
{
uint256 remaining = d;
uint256 px = x1;
uint256 py = y1;
uint256 pz = z1;
uint256 acx = 0;
uint256 acy = 0;
uint256 acz = 1;
if (d==0) {
return (0,0,1);
}
while (remaining != 0) {
if ((remaining & 1) != 0) {
(acx,acy,acz) = _ecAdd(acx,acy,acz, px,py,pz);
}
remaining = remaining / 2;
(px,py,pz) = _ecDouble(px,py,pz);
}
(x3,y3,z3) = (acx,acy,acz);
}
function publicKey(uint256 privKey) constant
returns(uint256 qx, uint256 qy)
{
uint256 x;
uint256 y;
uint256 z;
(x,y,z) = _ecMul(privKey, gx, gy, 1);
z = _inverse(z);
qx = mulmod(x , z ,n);
qy = mulmod(y , z ,n);
}
function deriveKey(uint256 privKey, uint256 pubX, uint256 pubY) constant
returns(uint256 qx, uint256 qy)
{
uint256 x;
uint256 y;
uint256 z;
(x,y,z) = _ecMul(privKey, pubX, pubY, 1);
z = _inverse(z);
qx = mulmod(x , z ,n);
qy = mulmod(y , z ,n);
}
}