diff options
author | Mohammed Attia <skeuomorf@gmail.com> | 2014-03-04 02:45:41 +0200 |
---|---|---|
committer | Mohammed Attia <skeuomorf@gmail.com> | 2014-03-04 02:45:41 +0200 |
commit | 157a1fc9a2c057ac45738dfa5ed1cc36ce0c6cac (patch) | |
tree | 3b9c7aa74c2912fe7d1ebbb77fa3efc82aa6eb15 | |
parent | a4e95af4b7f871822d1e9af9aa968de0b45e42e4 (diff) | |
download | cryptography-157a1fc9a2c057ac45738dfa5ed1cc36ce0c6cac.tar.gz cryptography-157a1fc9a2c057ac45738dfa5ed1cc36ce0c6cac.tar.bz2 cryptography-157a1fc9a2c057ac45738dfa5ed1cc36ce0c6cac.zip |
Remove DSAParams generate method as it will be implemented as a classmethod
-rw-r--r-- | cryptography/hazmat/primitives/interfaces.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/cryptography/hazmat/primitives/interfaces.py b/cryptography/hazmat/primitives/interfaces.py index bfe9c1da..245302e6 100644 --- a/cryptography/hazmat/primitives/interfaces.py +++ b/cryptography/hazmat/primitives/interfaces.py @@ -310,12 +310,6 @@ class DSAParams(six.with_metaclass(abc.ABCMeta)): in the DSA signing and verification processes." """ - @abc.abstractmethod - def generate(self): - """ - Generate DSA domain parameters. - """ - @abc.abstractproperty def p(self): """ |