-
Notifications
You must be signed in to change notification settings - Fork 1
/
simu4.py
41 lines (31 loc) · 1.17 KB
/
simu4.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
"""
Simulation with lottery in ip space instead of identifier space.
- random hash (not questioned) - sha256 of a bitstring - 32 bytes
- first 3 bytes of hash are hashed.
- last byte is directly compared to last ip bytes
- closest eligible ip is voted for
"""
from libs.utils import random_hash
from libs.utils import shuffle_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=shuffle_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))