mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2025-08-08 21:10:29 +00:00
Actually perform all checks in 2fa
This commit is contained in:
@@ -47,7 +47,8 @@ class Factorization:
|
||||
if g > 1:
|
||||
break
|
||||
|
||||
return g, pq // g
|
||||
p, q = g, pq // g
|
||||
return (p, q) if p < q else (q, p)
|
||||
|
||||
@staticmethod
|
||||
def gcd(a, b):
|
||||
|
Reference in New Issue
Block a user