diff options
author | David Reid <dreid@dreid.org> | 2014-04-30 16:49:54 -0700 |
---|---|---|
committer | David Reid <dreid@dreid.org> | 2014-04-30 16:49:54 -0700 |
commit | 66e377aea7d4391371ff8b1b8fa0420a10bbfa08 (patch) | |
tree | bf3f0ab01a3556de4629f857a6a1ce11257e77ff /cryptography | |
parent | 8d9e98fd5036021184e0bca268de5a02d07b24a3 (diff) | |
download | cryptography-66e377aea7d4391371ff8b1b8fa0420a10bbfa08.tar.gz cryptography-66e377aea7d4391371ff8b1b8fa0420a10bbfa08.tar.bz2 cryptography-66e377aea7d4391371ff8b1b8fa0420a10bbfa08.zip |
Passing tests.
Diffstat (limited to 'cryptography')
-rw-r--r-- | cryptography/hazmat/primitives/asymmetric/rsa.py | 2 |
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 |