-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathchallenge33.py
More file actions
31 lines (27 loc) · 1.13 KB
/
challenge33.py
File metadata and controls
31 lines (27 loc) · 1.13 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
from Cryptodome.Random import random
# The challenge doesn't talk about the order of g, but implement it
# anyway. Also it introduces a slight bias by saying to generate a
# number mod p instead of mod (p - 1). ¯\_(ツ)_/¯
def do_diffie_hellman(p, g, q):
a = random.randint(0, q - 1)
A = pow(g, a, p)
b = random.randint(0, q - 1)
B = pow(g, b, p)
return (a, A, b, B)
def test_diffie_hellman(p, g, q):
a, A, b, B = do_diffie_hellman(p, g, q)
print(a, A, b, B)
sA = pow(B, a, p)
sB = pow(A, b, p)
if sA != sB:
print(str(sA) + ' != ' + str(sB))
print(sA)
if __name__ == '__main__':
p = 37
g = 5
q = p - 1
test_diffie_hellman(p, g, q)
p = 0xffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca237327ffffffffffffffff
g = 2
q = p // 2 - 1
test_diffie_hellman(p, g, q)