summaryrefslogtreecommitdiff
path: root/rsa/key.py
diff options
context:
space:
mode:
authorKian-Meng, Ang <kianmeng@cpan.org>2021-10-23 10:15:21 +0800
committerSybren A. Stüvel <sybren@stuvel.eu>2021-11-24 10:28:25 +0100
commit3e9b33834ea005b76001d1d439fe0c1c02e7017c (patch)
tree0904328b6f7db51fc2135a7d0dfe5c7250c3a9da /rsa/key.py
parenta038aef614c656d24c5dfede07e8efe5106ed72e (diff)
downloadrsa-git-3e9b33834ea005b76001d1d439fe0c1c02e7017c.tar.gz
Fix typos
Diffstat (limited to 'rsa/key.py')
-rw-r--r--rsa/key.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rsa/key.py b/rsa/key.py
index e4644d1..1284ffc 100644
--- a/rsa/key.py
+++ b/rsa/key.py
@@ -629,7 +629,7 @@ def find_p_q(
) -> typing.Tuple[int, int]:
"""Returns a tuple of two different primes of nbits bits each.
- The resulting p * q has exacty 2 * nbits bits, and the returned p and q
+ The resulting p * q has exactly 2 * nbits bits, and the returned p and q
will not be equal.
:param nbits: the number of bits in each of p and q.