aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMohammed Attia <skeuomorf@gmail.com>2014-03-04 02:45:41 +0200
committerMohammed Attia <skeuomorf@gmail.com>2014-03-04 02:45:41 +0200
commit157a1fc9a2c057ac45738dfa5ed1cc36ce0c6cac (patch)
tree3b9c7aa74c2912fe7d1ebbb77fa3efc82aa6eb15
parenta4e95af4b7f871822d1e9af9aa968de0b45e42e4 (diff)
downloadcryptography-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.py6
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):
"""