DCE
authorChristian Grothoff <christian@grothoff.org>
Thu, 14 Feb 2019 10:26:51 +0000 (11:26 +0100)
committerChristian Grothoff <christian@grothoff.org>
Thu, 14 Feb 2019 10:26:51 +0000 (11:26 +0100)
src/secretsharing/gnunet-service-secretsharing.c

index 842d714f30374a9c7558766147415cf46d9e4e8a..1ffde04362ec9fc3162184b3bfdcf78eb41d8a74 100644 (file)
@@ -959,18 +959,9 @@ restore_fair (const struct GNUNET_CRYPTO_PaillierPublicKey *ppub,
     gcry_mpi_set (big_b, big_t);
   }
 
-  {
-    gcry_mpi_t paillier_n;
-
-    GNUNET_CRYPTO_mpi_scan_unsigned (&paillier_n,
-                                     ppub,
-                                     sizeof (struct GNUNET_CRYPTO_PaillierPublicKey));
-    /* FIXME: why get pallier_n here if we never use it? */
-    gcry_mpi_set (xres, b_2);
-    gcry_mpi_invm (xres, xres, elgamal_q);
-    gcry_mpi_mulm (xres, xres, b_1, elgamal_q);
-    gcry_mpi_release (paillier_n);
-  }
+  gcry_mpi_set (xres, b_2);
+  gcry_mpi_invm (xres, xres, elgamal_q);
+  gcry_mpi_mulm (xres, xres, b_1, elgamal_q);
 
   gcry_mpi_release (a_1);
   gcry_mpi_release (a_2);