diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-04-02 18:04:43 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-04-02 21:28:53 -0500 |
commit | f8778685279723420268c0e4bd46a9cd25e3f4d3 (patch) | |
tree | 88161e2d1bb294c56597c290b1b75796289c188b /tests/hazmat/primitives | |
parent | dc378d10347db0cd5d76108b041a42ca8512ab38 (diff) | |
download | cryptography-f8778685279723420268c0e4bd46a9cd25e3f4d3.tar.gz cryptography-f8778685279723420268c0e4bd46a9cd25e3f4d3.tar.bz2 cryptography-f8778685279723420268c0e4bd46a9cd25e3f4d3.zip |
DummyMGF needs a _salt_length too
Diffstat (limited to 'tests/hazmat/primitives')
-rw-r--r-- | tests/hazmat/primitives/test_rsa.py | 2 |
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): |