Expunge revision histories in files.
[u/mdw/catacomb] / mpbarrett-mexp.c
index 68917aa..4be854d 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: mpbarrett-mexp.c,v 1.2 2004/04/01 12:50:09 mdw Exp $
+ * $Id: mpbarrett-mexp.c,v 1.3 2004/04/08 01:36:15 mdw Exp $
  *
  * Multiple simultaneous exponentiations
  *
  * MA 02111-1307, USA.
  */
 
-/*----- Revision history --------------------------------------------------* 
- *
- * $Log: mpbarrett-mexp.c,v $
- * Revision 1.2  2004/04/01 12:50:09  mdw
- * Add cyclic group abstraction, with test code.  Separate off exponentation
- * functions for better static linking.  Fix a buttload of bugs on the way.
- * Generally ensure that negative exponents do inversion correctly.  Add
- * table of standard prime-field subgroups.  (Binary field subgroups are
- * currently unimplemented but easy to add if anyone ever finds a good one.)
- *
- * Revision 1.1  2001/06/16 12:58:34  mdw
- * Added simultaneous exponentiation with Barrett reduction.
- *
- */
-
 /*----- Header files ------------------------------------------------------*/
 
 #include "mp.h"
@@ -80,11 +65,8 @@ mp *mpbarrett_mexp(mpbarrett *mb, mp *d, const mp_expfactor *f, size_t n)
       spare = MP_NEWSEC;
     if (!(f[i].exp->f & MP_NEG))
       ff[i].base = MP_COPY(f[i].base);
-    else {
-      ff[i].base = MP_NEW;
-      mp_gcd(&g, 0, &ff[i].base, mb->m, f[i].base);
-      assert(MP_EQ(g, MP_ONE));
-    }
+    else
+      ff[i].base = mp_modinv(MP_NEW, f[i].base, mb->m);
     ff[i].exp = f[i].exp;
   }
   mp_drop(g);