-
Notifications
You must be signed in to change notification settings - Fork 0
/
fullscratch_zcash_2.py
183 lines (147 loc) · 4.76 KB
/
fullscratch_zcash_2.py
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
179
180
181
182
183
from collections import namedtuple
import hashlib
Point = namedtuple("Point", "x y")
O = 'Origin'
def tocomp(obj):
if type(obj) == int or type(obj) == Mod:
return Complex(obj, 0)
if type(obj) == Complex:
return obj
class Complex(object):
def __init__(self, r, i):
self.r = r
self.i = i
def __mul__(self, other):
k = tocomp(other)
return Complex(self.r*k.r - self.i*k.i, self.r*k.i + self.i*k.r)
def __rmul__(self, other):
k = tocomp(other)
return k * self
def __add__(self, other):
k = tocomp(other)
return Complex(self.r + k.r, self.i + k.i)
def __truediv__(self, other):
k = tocomp(other)
s = k.r**2 + k.i**2
return Complex((self.r*k.r + self.i*k.i) / s, (self.i*k.r - self.r*k.i) / s)
def __rtruediv__(self, other):
k = tocomp(other)
return k / self
def __sub__(self, other):
k = tocomp(other)
return Complex(self.r - k.r, self.i - k.i)
def __neg__(self):
return Complex(-self.r, -self.i)
def __pow__(self, n):
bs = format(n, 'b')[::-1]
tmp = self
result = Complex(1, 0)
for i in bs:
if i == "1":
result = result * tmp
tmp = tmp*tmp
return result
def __eq__(self, other):
k = tocomp(other)
return self.r == k.r and self.i == k.i
def __repr__(self):
return str(self.r) + " + " + str(self.i) + "i"
def tomod(obj, p):
if type(obj) == Mod:
return Mod(obj.n, p)
if type(obj) == int:
return Mod(obj, p)
class Mod(object):
def __init__(self, n, p):
self.n = n % p
self.p = p
def __mul__(self, other):
k = tomod(other, self.p)
return Mod(self.n * k.n, self.p)
def __rmul__(self, other):
k = tomod(other, self.p)
return k * self
def __add__(self, other):
k = tomod(other, self.p)
return Mod(self.n + k.n, self.p)
def __radd__(self, other):
k = tomod(other, self.p)
return k + self
def __truediv__(self, other):
k = tomod(other, self.p)
return Mod(self.n * pow(k.n, p - 2, self.p), self.p)
def __rtruediv__(self, other):
k = tomod(other, self.p)
return k / self
def __sub__(self, other):
k = tomod(other, self.p)
return Mod(self.n - k.n, self.p)
def __rsub__(self, other):
k = tomod(other, self.p)
return k - self
def __neg__(self):
return Mod(-self.n, self.p)
def __pow__(self, k):
return Mod(pow(self.n, k, self.p), self.p)
def __eq__(self, other):
k = tomod(other, self.p)
return self.n % self.p == k.n % self.p
def __repr__(self):
return str(self.n % self.p) + " % " + str(self.p)
class Curve:
def __init__(self, a, b):
self.a = a
self.b = b
def valid(self, P):
if P == O:
return True
else:
return (P.y**2 - (P.x**3 + self.a*P.x + self.b)) == 0
def inv(self, P):
if P == O:
return P
return Point(P.x, -P.y)
def add(self, P, Q):
if not (self.valid(P) and self.valid(Q)):
raise ValueError("Invalid inputs")
# Deal with the special cases where either P, Q, or P + Q is
# the origin.
if P == O:
result = Q
elif Q == O:
result = P
elif Q == self.inv(P):
result = O
else:
# Cases not involving the origin.
if P == Q:
dydx = (3 * P.x**2 + self.a) / (2 * P.y)
else:
dydx = (Q.y - P.y) / (Q.x - P.x)
x = dydx**2 - P.x - Q.x
y = dydx * (P.x - x) - P.y
result = Point(x, y)
assert self.valid(result)
return result
def mul(self, P, n):
bs = format(n, 'b')[::-1]
tmp = P
result = O
for i in bs:
if i == "1":
result = self.add(result, tmp)
tmp = self.add(tmp, tmp)
return result
p = 0x30644e72e131a029b85045b68181585d97816a916871ca8d3c208c16d87cfd47
E1 = Curve(Mod(0, p), Mod(3, p))
P1 = Point(Mod(1, p), Mod(2, p))
print(E1.mul(P1, 8041242423242300))
E2 = Curve(Complex(Mod(0, p), Mod(0, p)), 3/Complex(Mod(9, p), Mod(1, p)))
P2 = Point(
Complex(
Mod(0x1800deef121f1e76426a00665e5c4479674322d4f75edadd46debd5cd992f6ed, p),
Mod(0x198e9393920d483a7260bfb731fb5d25f1aa493335a9e71297e485b7aef312c2, p)),
Complex(
Mod(0x12c85ea5db8c6deb4aab71808dcb408fe3d1e7690c43d37b4ce6cc0166fa7daa, p),
Mod(0x090689d0585ff075ec9e99ad690c3395bc4b313370b38ef355acdadcd122975b, p)))
print(E2.mul(P2, 10000000))