diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-10-21 14:53:07 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-10-21 14:53:07 -0700 |
commit | f28f8eecfdbe21cd466bedb851c12fd19cf0e584 (patch) | |
tree | 3cf8a54d782810cba51a4b91f4bd969e14739735 | |
parent | 2d8b99674dcce97f0dd5fe9b2e0ee3412275b159 (diff) | |
download | cryptography-f28f8eecfdbe21cd466bedb851c12fd19cf0e584.tar.gz cryptography-f28f8eecfdbe21cd466bedb851c12fd19cf0e584.tar.bz2 cryptography-f28f8eecfdbe21cd466bedb851c12fd19cf0e584.zip |
oops, fix recursion
-rw-r--r-- | cryptography/hazmat/primitives/asymmetric/rsa.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cryptography/hazmat/primitives/asymmetric/rsa.py b/cryptography/hazmat/primitives/asymmetric/rsa.py index cf2be4c4..db38ed55 100644 --- a/cryptography/hazmat/primitives/asymmetric/rsa.py +++ b/cryptography/hazmat/primitives/asymmetric/rsa.py @@ -163,8 +163,8 @@ class RSAPrivateNumbers(object): d = utils.read_only_property("_d") dmp1 = utils.read_only_property("_dmp1") dmq1 = utils.read_only_property("_dmq1") - iqmp = utils.read_only_property("iqmp") - public_numbers = utils.read_only_property("public_numbers") + iqmp = utils.read_only_property("_iqmp") + public_numbers = utils.read_only_property("_public_numbers") def private_key(self, backend): return backend.load_rsa_private_numbers(self) |