]> Git Repo - secp256k1.git/commitdiff
Increase sparsity of pippenger fixed window naf representation
authorJonas Nick <[email protected]>
Tue, 27 Feb 2018 21:34:08 +0000 (21:34 +0000)
committerJonas Nick <[email protected]>
Thu, 1 Mar 2018 18:20:36 +0000 (18:20 +0000)
src/ecmult_impl.h
src/tests.c

index fd14bf1285784cfc95dc637ac976e2f80836d798..490982b27dd064d0b24735be3c959be4a705bbec 100644 (file)
@@ -607,6 +607,19 @@ static int secp256k1_wnaf_fixed(int *wnaf, const secp256k1_scalar *s, int w) {
         } else {
             wnaf[pos] = (val + sign) ^ sign;
         }
+        /* Set a coefficient to zero if it is 1 or -1 and the proceeding digit
+         * is strictly negative or strictly positive respectively. Only change
+         * coefficients at previous positions because above code assumes that
+         * wnaf[pos - 1] is odd.
+         */
+        if (pos >= 2 && ((wnaf[pos - 1] == 1 && wnaf[pos - 2] < 0) || (wnaf[pos - 1] == -1 && wnaf[pos - 2] > 0))) {
+            if (wnaf[pos - 1] == 1) {
+                wnaf[pos - 2] += 1 << w;
+            } else {
+                wnaf[pos - 2] -= 1 << w;
+            }
+            wnaf[pos - 1] = 0;
+        }
         ++pos;
     }
     VERIFY_CHECK(pos == WNAF_SIZE(w));
index 893d29722c0e274a17b895780194649554829a22..ed88811dd97c4feb9db8e1c5b1a59aabb219d3b9 100644 (file)
@@ -3022,8 +3022,7 @@ void test_fixed_wnaf(const secp256k1_scalar *number, int w) {
     for (i = WNAF_SIZE(w)-1; i >= 0; --i) {
         secp256k1_scalar t;
         int v = wnaf[i];
-        CHECK(v != 0); /* check nonzero */
-        CHECK(v & 1);  /* check parity */
+        CHECK(v == 0 || v & 1);  /* check parity */
         CHECK(v > -(1 << w)); /* check range above */
         CHECK(v < (1 << w));  /* check range below */
 
This page took 0.031767 seconds and 4 git commands to generate.