X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb-python/blobdiff_plain/b1ddcca69421a27a09b2f5a5531f02936192736a..5d8da10545210a437cef3ba0348d125805349699:/t/t-ec.py?ds=sidebyside diff --git a/t/t-ec.py b/t/t-ec.py index 01b5f27..b85105d 100644 --- a/t/t-ec.py +++ b/t/t-ec.py @@ -242,6 +242,7 @@ class TestCurves (T.GenericTestMixin): ## Simultaneous multiplication. Q, R, S = 5*P, 7*P, 11*P + me.assertEqual(E.mmul(set([(Q, 9), (R, 8), (S, 5)])), 156*P) me.assertEqual(E.mmul([Q, 9, R, 8, S, 5]), 156*P) me.assertEqual(E.mmul(Q, 9, R, 8, S, 5), 156*P) @@ -251,7 +252,7 @@ class TestCurves (T.GenericTestMixin): def test_tinycurves(me): me._test_curve(C.ECInfo(E, 2*P, 13, 2), checkfail = True) - ei, _ = C.ECInfo.parse("binpoly: 0x13; bin: 0x01, 0x08; 0x02, 0x0c: 5*4") + ei = C.ECInfo.fromstring("binpoly: 0x13; bin: 0x01, 0x08; 0x02, 0x0c: 5*4") me._test_curve(ei, checkfail = True) TestCurves.generate_testcases((name, C.eccurves[name]) for name in