diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2017-05-10 23:11:30 -0400 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2017-05-10 22:11:30 -0500 |
commit | 5ca9946a5ae87ceedc4b6f2744b9300e957c8a98 (patch) | |
tree | 578edda39ca9d7a6b290f376ebb21f4961a199a6 /tests/hazmat/primitives/test_ec.py | |
parent | 92f570eabe713653e5fe2dc9ba666493df047ccb (diff) | |
download | cryptography-5ca9946a5ae87ceedc4b6f2744b9300e957c8a98.tar.gz cryptography-5ca9946a5ae87ceedc4b6f2744b9300e957c8a98.tar.bz2 cryptography-5ca9946a5ae87ceedc4b6f2744b9300e957c8a98.zip |
Fixes #3538 -- Make our OpenSSL EC verifier's implementation match the API (#3539)
* Document our real API for EC verification, not an accident
* formatting consistency
* fix the code itself
* fixed class name
* fixed a test too
Diffstat (limited to 'tests/hazmat/primitives/test_ec.py')
-rw-r--r-- | tests/hazmat/primitives/test_ec.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_ec.py b/tests/hazmat/primitives/test_ec.py index 7127071f..ad4bbc51 100644 --- a/tests/hazmat/primitives/test_ec.py +++ b/tests/hazmat/primitives/test_ec.py @@ -508,7 +508,7 @@ class TestECDSAVectors(object): ec.ECDSA(hash_type()) ) verifier.update(vector['message']) - assert verifier.verify() + verifier.verify() @pytest.mark.parametrize( "vector", |