Browse Source

minor

3.0.x
cluelessperson 7 years ago
parent
commit
151e3ab8e0
  1. 3
      lib/rsakey.py

3
lib/rsakey.py

@ -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)

Loading…
Cancel
Save