forked from Unicuby/FMSI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiller_rabin.py
56 lines (38 loc) · 1.06 KB
/
miller_rabin.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
# -*- coding: utf-8 -*-
import random
def MillerRabin(p, limit = 40):
petits_premiers = [2, 3, 5, 7, 11, 13, 17, 19]
if (p in petits_premiers):
return True
if (p % 2 == 0):
return False
s = 0
d = p - 1
while d % 2 == 0:
s += 1
d //= 2
for i in range(limit):
a = random.randint(2, p - 1)
x = pow(a, d, p)
if x == 1 or x == p - 1:
continue
for r in range(s - 1):
x = pow(x, 2, p)
if x == 1: return False
if x == p - 1: continue
return False
return True
def generate_prime(bit):
low_bound = 2 ** (bit - 1)
n = random.randint(low_bound, low_bound * 2) | 1
s = 2 * n
while not MillerRabin(n):
for i in range(2, s, 2):
if (MillerRabin(n + i)): return n + i
# si l'incrément rate on génère un nouveau nombre
low_bound = 2 ** (bit - 1)
n = random.randint(low_bound, low_bound * 2)
return n
if __name__ == "__main__":
p = generate_prime(64)
print(p)