summaryrefslogtreecommitdiff
path: root/rsa/key.py
diff options
context:
space:
mode:
authorAlexandr <alexfox@protonmail.ch>2016-11-08 13:23:52 +0500
committerSybren A. Stüvel <sybren@stuvel.eu>2016-11-08 09:23:52 +0100
commitdc57888fe2ead24f111aee4c38427a8f411a5eb6 (patch)
treea07051018475ade45f5f00b7654ce3bf28d92de2 /rsa/key.py
parent9f57740ec47f828b2be0cf0a104638c4abee9c3d (diff)
downloadrsa-git-dc57888fe2ead24f111aee4c38427a8f411a5eb6.tar.gz
Fixes a typo in docstrings (#83)
Diffstat (limited to 'rsa/key.py')
-rw-r--r--rsa/key.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rsa/key.py b/rsa/key.py
index eb30bbe..a3a3b65 100644
--- a/rsa/key.py
+++ b/rsa/key.py
@@ -182,7 +182,7 @@ class PublicKey(AbstractKey):
This key is also known as the 'encryption key'. It contains the 'n' and 'e'
values.
- Supports attributes as well as dictionary-like access. Attribute accesss is
+ Supports attributes as well as dictionary-like access. Attribute access is
faster, though.
>>> PublicKey(5, 3)
@@ -348,7 +348,7 @@ class PrivateKey(AbstractKey):
This key is also known as the 'decryption key'. It contains the 'n', 'e',
'd', 'p', 'q' and other values.
- Supports attributes as well as dictionary-like access. Attribute accesss is
+ Supports attributes as well as dictionary-like access. Attribute access is
faster, though.
>>> PrivateKey(3247, 65537, 833, 191, 17)