aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-04-02 18:04:43 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-04-02 21:28:53 -0500
commitf8778685279723420268c0e4bd46a9cd25e3f4d3 (patch)
tree88161e2d1bb294c56597c290b1b75796289c188b /tests
parentdc378d10347db0cd5d76108b041a42ca8512ab38 (diff)
downloadcryptography-f8778685279723420268c0e4bd46a9cd25e3f4d3.tar.gz
cryptography-f8778685279723420268c0e4bd46a9cd25e3f4d3.tar.bz2
cryptography-f8778685279723420268c0e4bd46a9cd25e3f4d3.zip
DummyMGF needs a _salt_length too
Diffstat (limited to 'tests')
-rw-r--r--tests/hazmat/primitives/test_rsa.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_rsa.py b/tests/hazmat/primitives/test_rsa.py
index fa0b5983..cc87d981 100644
--- a/tests/hazmat/primitives/test_rsa.py
+++ b/tests/hazmat/primitives/test_rsa.py
@@ -39,7 +39,7 @@ class DummyPadding(object):
class DummyMGF(object):
- pass
+ _salt_length = 0
def _modinv(e, m):