-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathverify1.py
More file actions
191 lines (159 loc) · 6.4 KB
/
verify1.py
File metadata and controls
191 lines (159 loc) · 6.4 KB
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
184
185
186
187
188
189
190
191
import secrets
import hashlib
import random
import time
import multiprocessing
RSA_KEY_SIZE = 3072 # RSA key size for 128 bits of security (modulus size)
RSA_PRIME_SIZE = int(RSA_KEY_SIZE / 2)
ACCUMULATED_PRIME_SIZE = 128 # taken from: LLX, "Universal accumulators with efficient nonmembership proofs", construction 1
def setup():
p, q = generate_two_large_distinct_primes(RSA_PRIME_SIZE)
n = p * q
A0 = secrets.randbelow(n)
return n, A0, dict()
def add(A, S, x, n):
if x in S.keys():
return A
else:
hash_prime, nonce = hash_to_prime(x, ACCUMULATED_PRIME_SIZE)
A = pow(A, hash_prime, n)
S[x] = nonce
return A
def batch_add(A_pre_add, S, x_list, n):
product = 1
for x in x_list:
if x not in S.keys():
hash_prime, nonce = hash_to_prime(x, ACCUMULATED_PRIME_SIZE)
S[x] = nonce
product *= hash_prime
A_post_add = pow(A_pre_add, product, n)
return A_post_add
def parallel_add(chunk, A_pre_add, n):
local_S = {}
result_A = batch_add(A_pre_add, local_S, chunk, n)
return result_A, local_S
def rabin_miller(num):
s = num - 1
t = 0
while s % 2 == 0:
s = s // 2
t += 1
for trials in range(5):
a = random.randrange(2, num - 1)
v = pow(a, s, num)
if v != 1:
i = 0
while v != (num - 1):
if i == t - 1:
return False
else:
i = i + 1
v = (v ** 2) % num
return True
def generate_large_prime(num_of_bits):
while True:
num = secrets.randbelow(pow(2, num_of_bits))
if is_prime(num):
return num
def generate_two_large_distinct_primes(num_of_bits):
p = generate_large_prime(num_of_bits)
while True:
q = generate_large_prime(num_of_bits)
if q != p:
return p, q
def is_prime(num):
if num < 2:
return False
lowPrimes = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199, 211, 223, 227, 229, 233, 239, 241, 251, 257, 263, 269, 271, 277, 281, 283, 293, 307, 311, 313, 317, 331, 337, 347, 349, 353, 359, 367, 373, 379, 383, 389, 397, 401, 409, 419, 421, 431, 433, 439, 443, 449, 457, 461, 463, 467, 479, 487, 491, 499, 503, 509, 521, 523, 541, 547, 557, 563, 569, 571, 577, 587, 593, 599, 601, 607, 613, 617, 619, 631, 641, 643, 647, 653, 659, 661, 673, 677, 683, 691, 701, 709, 719, 727, 733, 739, 743, 751, 757, 761, 769, 773, 787, 797, 809, 811, 821, 823, 827, 829, 839, 853, 857, 859, 863, 877, 881, 883, 887, 907, 911, 919, 929, 937, 941, 947, 953, 967, 971, 977, 983, 991, 997]
if num in lowPrimes:
return True
for prime in lowPrimes:
if num % prime == 0:
return False
return rabin_miller(num)
def hash_to_prime(x, num_of_bits=128, nonce=0):
num = hash_to_128_bits(x)
while True:
num = num + nonce
if is_prime(num):
return num, nonce
nonce = nonce + 1
def hash_to_128_bits(hex_string):
hex_bytes = bytes.fromhex(hex_string)
hash_result = hashlib.sha256(hex_bytes).digest()
result_128_bits = int.from_bytes(hash_result[:16], byteorder='big')
return result_128_bits
def verify_membership(A, x, nonce, proof, n):
return __verify_membership(A, hash_to_prime(x=x, num_of_bits=ACCUMULATED_PRIME_SIZE, nonce=nonce)[0], proof, n)
def __verify_membership(A, x, proof, n):
return pow(proof, x, n) == A
def create_all_membership_witnesses(A0, S, n):
primes = [hash_to_prime(x=x, nonce=0)[0] for x in S.keys()]
return root_factor(A0, primes, n)
def root_factor(g, primes, N):
n = len(primes)
if n == 1:
return [g]
n_tag = n // 2
primes_L = primes[n_tag:n]
product_L = calculate_product(primes_L)
g_L = pow(g, product_L, N)
primes_R = primes[0: n_tag]
product_R = calculate_product(primes_R)
g_R = pow(g, product_R, N)
L = root_factor(g_L, primes_R, N)
R = root_factor(g_R, primes_L, N)
return L + R
def calculate_product(lst):
r = 1
for x in lst:
r *= x
return r
def parallel_witness_creation(chunk, A0, n):
S_local = {x: nonce for x, nonce in chunk}
primes = [hash_to_prime(x=x, nonce=0)[0] for x in S_local.keys()]
witnesses = root_factor(A0, primes, n)
return list(zip(S_local.keys(), witnesses))
def parallel_membership_verification(chunk, A1, S, n):
results = []
for x, proof in chunk:
nonce = S[x]
result = verify_membership(A1, x, nonce, proof, n)
results.append(result)
return results
if __name__ == '__main__':
n, A0, S = setup()
x_values = [secrets.token_hex(32) for _ in range(1000)]
start = time.time()
chunk_size = len(x_values) // multiprocessing.cpu_count()
chunks = [x_values[i:i + chunk_size] for i in range(0, len(x_values), chunk_size)]
with multiprocessing.Pool() as pool:
results = pool.starmap(parallel_add, [(chunk, A0, n) for chunk in chunks])
A1 = A0
for result_A, local_S in results:
A1 = (A1 * result_A) % n
S.update(local_S)
end = time.time()
print("Time:", end - start )
print("Final Accumulator Value:", A1)
print("Final Set Size:", len(S))
start = time.time()
S_items = list(S.items())
chunk_size = len(S_items) // multiprocessing.cpu_count()
S_chunks = [S_items[i:i + chunk_size] for i in range(0, len(S_items), chunk_size)]
with multiprocessing.Pool() as pool:
witness_results = pool.starmap(parallel_witness_creation, [(chunk, A0, n) for chunk in S_chunks])
witnesses = {}
for result in witness_results:
witnesses.update(result)
end = time.time()
print("Time to create membership witnesses:", end - start)
start = time.time()
witness_items = list(witnesses.items())
chunk_size = len(witness_items) // multiprocessing.cpu_count()
witness_chunks = [witness_items[i:i + chunk_size] for i in range(0, len(witness_items), chunk_size)]
with multiprocessing.Pool() as pool:
verification_results = pool.starmap(parallel_membership_verification, [(chunk, A1, S, n) for chunk in witness_chunks])
end = time.time()
print("Time to verify membership witnesses:", end - start)
verification_results_flat = [item for sublist in verification_results for item in sublist]