Browse Source
Merge pull request #3419 from cluelessperson/fix_rsakey
[easy] Typo breaks lib.rsakey.RSAKey.generate ?
3.0.x
ThomasV
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
2 deletions
-
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) |
|
|
|
|
|
|
|