From 157a1fc9a2c057ac45738dfa5ed1cc36ce0c6cac Mon Sep 17 00:00:00 2001 From: Mohammed Attia Date: Tue, 4 Mar 2014 02:45:41 +0200 Subject: Remove DSAParams generate method as it will be implemented as a classmethod --- cryptography/hazmat/primitives/interfaces.py | 6 ------ 1 file changed, 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): """ -- cgit v1.2.3