forked from TheAlgorithms/Python
- Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrsa_factorization.py
61 lines (48 loc) · 1.66 KB
/
rsa_factorization.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
57
58
59
60
61
"""
An RSA prime factor algorithm.
The program can efficiently factor RSA prime number given the private key d and
public key e.
| Source: on page ``3`` of https://crypto.stanford.edu/~dabo/papers/RSA-survey.pdf
| More readable source: https://www.di-mgt.com.au/rsa_factorize_n.html
large number can take minutes to factor, therefore are not included in doctest.
"""
from __future__ importannotations
importmath
importrandom
defrsafactor(d: int, e: int, n: int) ->list[int]:
"""
This function returns the factors of N, where p*q=N
Return: [p, q]
We call N the RSA modulus, e the encryption exponent, and d the decryption exponent.
The pair (N, e) is the public key. As its name suggests, it is public and is used to
encrypt messages.
The pair (N, d) is the secret key or private key and is known only to the recipient
of encrypted messages.
>>> rsafactor(3, 16971, 25777)
[149, 173]
>>> rsafactor(7331, 11, 27233)
[113, 241]
>>> rsafactor(4021, 13, 17711)
[89, 199]
"""
k=d*e-1
p=0
q=0
whilep==0:
g=random.randint(2, n-1)
t=k
whileTrue:
ift%2==0:
t=t//2
x= (g**t) %n
y=math.gcd(x-1, n)
ifx>1andy>1:
p=y
q=n//y
break# find the correct factors
else:
break# t is not divisible by 2, break and choose another g
returnsorted([p, q])
if__name__=="__main__":
importdoctest
doctest.testmod()