diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-03-17 07:09:19 -0430 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-03-17 07:09:19 -0430 |
commit | b125fef80dbfd8cd2d8155987f67ed0125edeed1 (patch) | |
tree | 5e15e9c135378d0b5c7ccc749cc20c33da1cd2a4 /cryptography | |
parent | e1bf0f821add8461e6fcee57fdc6e17280970c2d (diff) | |
parent | edacb14ad951431da178fbe238b858c2095bc239 (diff) | |
download | cryptography-b125fef80dbfd8cd2d8155987f67ed0125edeed1.tar.gz cryptography-b125fef80dbfd8cd2d8155987f67ed0125edeed1.tar.bz2 cryptography-b125fef80dbfd8cd2d8155987f67ed0125edeed1.zip |
Merge pull request #816 from skeuomorf/interface
Add key_size property to DSAPublicKey
Diffstat (limited to 'cryptography')
-rw-r--r-- | cryptography/hazmat/primitives/interfaces.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cryptography/hazmat/primitives/interfaces.py b/cryptography/hazmat/primitives/interfaces.py index 3824bcde..eab48b4d 100644 --- a/cryptography/hazmat/primitives/interfaces.py +++ b/cryptography/hazmat/primitives/interfaces.py @@ -367,6 +367,12 @@ class DSAPrivateKey(six.with_metaclass(abc.ABCMeta)): class DSAPublicKey(six.with_metaclass(abc.ABCMeta)): @abc.abstractproperty + def key_size(self): + """ + The bit length of the prime modulus. + """ + + @abc.abstractproperty def y(self): """ The public key. |