We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30e5a54 commit c460a5eCopy full SHA for c460a5e
test/test_crypto.py
@@ -367,7 +367,7 @@ def test_ec_asn1_signing_roundtrip(self):
367
signature = ec.sign(digest)
368
369
(r, s) = EC.decode_der_signature(signature)
370
- self.assertEqual(signature, EC.encode_raw_signature(r, s))
+ self.assertEqual(signature, EC.encode_raw_signature((r, s)))
371
372
self.assertTrue(ec.verify(digest, signature))
373
0 commit comments