aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Reid <dreid@dreid.org>2014-04-30 16:49:54 -0700
committerDavid Reid <dreid@dreid.org>2014-04-30 16:49:54 -0700
commit66e377aea7d4391371ff8b1b8fa0420a10bbfa08 (patch)
treebf3f0ab01a3556de4629f857a6a1ce11257e77ff
parent8d9e98fd5036021184e0bca268de5a02d07b24a3 (diff)
downloadcryptography-66e377aea7d4391371ff8b1b8fa0420a10bbfa08.tar.gz
cryptography-66e377aea7d4391371ff8b1b8fa0420a10bbfa08.tar.bz2
cryptography-66e377aea7d4391371ff8b1b8fa0420a10bbfa08.zip
Passing tests.
-rw-r--r--cryptography/hazmat/primitives/asymmetric/rsa.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptography/hazmat/primitives/asymmetric/rsa.py b/cryptography/hazmat/primitives/asymmetric/rsa.py
index 3ddecf99..e84472c7 100644
--- a/cryptography/hazmat/primitives/asymmetric/rsa.py
+++ b/cryptography/hazmat/primitives/asymmetric/rsa.py
@@ -266,7 +266,7 @@ class RSAPrivateNumbers(object):
self._q = q
self._d = d
self._dmp1 = dmp1
- self._dmpq1 = dmq1
+ self._dmq1 = dmq1
self._iqmp = iqmp
self._public_numbers = public_numbers