This commit is contained in:
cluelessperson 2017-11-29 18:14:39 -06:00
parent c34ea0066b
commit 151e3ab8e0
1 changed files with 1 additions and 2 deletions

View File

@ -526,7 +526,7 @@ class RSAKey(object):
return False
def generate(bits):
key = Python_RSAKey()
key = RSAKey()
p = getRandomPrime(bits//2, False)
q = getRandomPrime(bits//2, False)
t = lcm(p-1, q-1)
@ -540,4 +540,3 @@ class RSAKey(object):
key.qInv = invMod(q, p)
return key
generate = staticmethod(generate)