diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2020-01-12 20:33:25 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2020-01-12 21:33:25 -0500 |
commit | c8c78bb4c57b3be68b3779c2ad5bab0c7122fbf2 (patch) | |
tree | f424fb2b8156aa686c424a5e97ad0e2fc2c69c04 /tests/wycheproof | |
parent | f95abfeb6103a75741fe0b497bbc0fee24eddb6a (diff) | |
download | cryptography-c8c78bb4c57b3be68b3779c2ad5bab0c7122fbf2.tar.gz cryptography-c8c78bb4c57b3be68b3779c2ad5bab0c7122fbf2.tar.bz2 cryptography-c8c78bb4c57b3be68b3779c2ad5bab0c7122fbf2.zip |
Refs #5075 -- use dsa_*.json from wycheproof (#5098)
Diffstat (limited to 'tests/wycheproof')
-rw-r--r-- | tests/wycheproof/test_dsa.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/wycheproof/test_dsa.py b/tests/wycheproof/test_dsa.py index 3dc3056e..5019dc6a 100644 --- a/tests/wycheproof/test_dsa.py +++ b/tests/wycheproof/test_dsa.py @@ -23,6 +23,10 @@ _DIGESTS = { @pytest.mark.requires_backend_interface(interface=DSABackend) @pytest.mark.wycheproof_tests( "dsa_test.json", + "dsa_2048_224_sha224_test.json", + "dsa_2048_224_sha256_test.json", + "dsa_2048_256_sha256_test.json", + "dsa_3072_256_sha256_test.json", ) def test_dsa_signature(backend, wycheproof): key = serialization.load_der_public_key( |