X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/774d32a5b60c5e7d38fba874a42e2273c49889fc..c65df27983057ec76ed0e72bb370f9a5ae7dad28:/mp-jacobi.c diff --git a/mp-jacobi.c b/mp-jacobi.c index aba168e..2562342 100644 --- a/mp-jacobi.c +++ b/mp-jacobi.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: mp-jacobi.c,v 1.3 2000/07/20 17:14:34 mdw Exp $ + * $Id: mp-jacobi.c,v 1.5 2004/04/08 01:36:15 mdw Exp $ * * Compute Jacobi symbol * @@ -27,20 +27,6 @@ * MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: mp-jacobi.c,v $ - * Revision 1.3 2000/07/20 17:14:34 mdw - * Simplify by using @mp_odd@. - * - * Revision 1.2 1999/12/10 23:19:02 mdw - * Improve error-checking. - * - * Revision 1.1 1999/11/22 20:50:37 mdw - * Add support for computing Jacobi symbols. - * - */ - /*----- Header files ------------------------------------------------------*/ #include "mp.h" @@ -64,6 +50,8 @@ int mp_jacobi(mp *a, mp *n) { int s = 1; + assert(((void)"n must be odd in mp_jacobi", MP_LEN(n) && (n->v[0] & 1))); + /* --- Take copies of the arguments --- */ a = MP_COPY(a);