diff options
author | David Reid <dreid@dreid.org> | 2014-05-01 12:57:35 -0700 |
---|---|---|
committer | David Reid <dreid@dreid.org> | 2014-05-01 12:57:35 -0700 |
commit | 6994ff0da7076ab161c91bfa5df09290faf1cec4 (patch) | |
tree | 3def8b1e5ab1cd3c46ef1abac79f630e049d3948 /cryptography | |
parent | b0f2b674640ee126d0cc63849f77c4ea480d67fd (diff) | |
download | cryptography-6994ff0da7076ab161c91bfa5df09290faf1cec4.tar.gz cryptography-6994ff0da7076ab161c91bfa5df09290faf1cec4.tar.bz2 cryptography-6994ff0da7076ab161c91bfa5df09290faf1cec4.zip |
Make public_numbers a property.
Diffstat (limited to 'cryptography')
-rw-r--r-- | cryptography/hazmat/primitives/asymmetric/rsa.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cryptography/hazmat/primitives/asymmetric/rsa.py b/cryptography/hazmat/primitives/asymmetric/rsa.py index e84472c7..18fcac26 100644 --- a/cryptography/hazmat/primitives/asymmetric/rsa.py +++ b/cryptography/hazmat/primitives/asymmetric/rsa.py @@ -294,6 +294,7 @@ class RSAPrivateNumbers(object): def iqmp(self): return self._iqmp + @property def public_numbers(self): return self._public_numbers |