-
Notifications
You must be signed in to change notification settings - Fork 1
/
simu3.py
39 lines (30 loc) · 1.2 KB
/
simu3.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
"""
Simulation with lottery in ip space instead of identifier space.
- random hash (not questioned) - sha256 of a bitstring - 32 bytes
- first 4 bytes of hash are directly compared to ip bytes, so an ip in a dense ip regions (c-class) is less likely to win
- closest eligible ip is voted for
"""
from libs.utils import random_hash
from libs.utils import raw_ip_score, save_whois
from libs.nodesreader import NodesReader
if __name__ == "__main__":
readers = []
for i in range(5):
readers.append(NodesReader("NODES/nodes.{}".format(i+1)))
# save_whois()
for test in range(1000):
cycle_hash = random_hash()
# print("Run {}".format(test))
winners = []
for i in range(5):
winner = readers[i].winner(cycle_hash, scoring=raw_ip_score)
ip_class = readers[i].verifiers[winner][1]
ip_class_count = readers[i].ip_classes[ip_class][0]
# print(winner.hex(), ip_class, ip_class_count)
winners.append(winner)
# exit()
full = True
for i in range(4):
if winners[4] != winners[i]:
full = False
print("{},{},{},{}".format(test, full, ip_class, ip_class_count))