From: Loup Vaillant Date: Mon, 17 Feb 2020 16:21:21 +0000 (+0100) Subject: SAGE script: removed dead code X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=7fa2b39bb647e666649a5de1ac11ac3ed3b64283;p=Monocypher.git SAGE script: removed dead code --- diff --git a/tests/gen/elligator.sage b/tests/gen/elligator.sage index 778be11..b037799 100755 --- a/tests/gen/elligator.sage +++ b/tests/gen/elligator.sage @@ -94,8 +94,6 @@ def trim(scalar): return trimmed def scalarmult(point, scalar): - x = point[0] - y = point[1] acc = (0, 1) for i in list(Integer.binary(trim(scalar))): acc = point_add(acc, acc)