summaryrefslogtreecommitdiff
path: root/rsa/key.py
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@stuvel.eu>2016-01-27 18:29:43 +0100
committerSybren A. Stüvel <sybren@stuvel.eu>2016-01-27 18:29:43 +0100
commit282069092d41c67fbda10cb5ffa06a58cd9c5baf (patch)
tree33e8acb3d09346b35340f7bdfb9795281292913a /rsa/key.py
parentd9dbf6e1bf84466363b90a8c0928149841b70f67 (diff)
downloadrsa-git-282069092d41c67fbda10cb5ffa06a58cd9c5baf.tar.gz
Fixed PEP8 style issues
Diffstat (limited to 'rsa/key.py')
-rw-r--r--rsa/key.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/rsa/key.py b/rsa/key.py
index 0eddcde..f49a102 100644
--- a/rsa/key.py
+++ b/rsa/key.py
@@ -441,16 +441,16 @@ class PrivateKey(AbstractKey):
# ASN.1 contents of DER encoded private key:
#
# RSAPrivateKey ::= SEQUENCE {
- # version Version,
+ # version Version,
# modulus INTEGER, -- n
# publicExponent INTEGER, -- e
# privateExponent INTEGER, -- d
# prime1 INTEGER, -- p
# prime2 INTEGER, -- q
# exponent1 INTEGER, -- d mod (p-1)
- # exponent2 INTEGER, -- d mod (q-1)
+ # exponent2 INTEGER, -- d mod (q-1)
# coefficient INTEGER, -- (inverse of q) mod p
- # otherPrimeInfos OtherPrimeInfos OPTIONAL
+ # otherPrimeInfos OtherPrimeInfos OPTIONAL
# }
if priv[0] != 0: