diff --git a/httpsig/sign_algorithms.py b/httpsig/sign_algorithms.py index a10fb4c..e4d2656 100644 --- a/httpsig/sign_algorithms.py +++ b/httpsig/sign_algorithms.py @@ -13,11 +13,11 @@ class SignAlgorithm(object): __metaclass__ = ABCMeta @abstractmethod - def sign(self, *args): + def sign(self, private, data): raise NotImplementedError() @abstractmethod - def verify(self, *args): + def verify(self, public, data, signature): raise NotImplementedError()