-
Notifications
You must be signed in to change notification settings - Fork 134
/
Copy pathbabygiantstep.py
executable file
·70 lines (51 loc) · 1.52 KB
/
babygiantstep.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
#!/usr/bin/env python3
# This script makes use of another module: common.py, which can be
# found on GitHub:
#
# https://github.com/andreacorbellini/ecc/blob/master/logs/common.py
#
# You must place that module on the same directory of this script
# prior to running it.
import math
import random
from common import tinycurve as curve
def log(p, q):
assert curve.is_on_curve(p)
assert curve.is_on_curve(q)
sqrt_n = int(math.sqrt(curve.n)) + 1
# Compute the baby steps and store them in the 'precomputed' hash table.
r = None
precomputed = {None: 0}
for a in range(1, sqrt_n):
r = curve.add(r, p)
precomputed[r] = a
# Now compute the giant steps and check the hash table for any
# matching point.
r = q
s = curve.mult(sqrt_n, curve.neg(p))
for b in range(sqrt_n):
try:
a = precomputed[r]
except KeyError:
pass
else:
steps = sqrt_n + b
logarithm = a + sqrt_n * b
return logarithm, steps
r = curve.add(r, s)
raise AssertionError('logarithm not found')
def main():
x = random.randrange(1, curve.n)
p = curve.g
q = curve.mult(x, p)
print('Curve: {}'.format(curve))
print('Curve order: {}'.format(curve.n))
print('p = (0x{:x}, 0x{:x})'.format(*p))
print('q = (0x{:x}, 0x{:x})'.format(*q))
print(x, '* p = q')
y, steps = log(p, q)
print('log(p, q) =', y)
print('Took', steps, 'steps')
assert x == y
if __name__ == '__main__':
main()