X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/0ba18b905ee653e04e60d31a0253b8adcd9b723b..b0b682aa5f6174deb5bde83701b191556986fe05:/dsa-verify.c diff --git a/dsa-verify.c b/dsa-verify.c index 3f77039..a39c11b 100644 --- a/dsa-verify.c +++ b/dsa-verify.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: dsa-verify.c,v 1.5 2000/10/08 12:13:17 mdw Exp $ + * $Id: dsa-verify.c,v 1.6 2001/06/16 12:56:38 mdw Exp $ * * DSA signature verification * @@ -30,6 +30,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: dsa-verify.c,v $ + * Revision 1.6 2001/06/16 12:56:38 mdw + * Fixes for interface change to @mpmont_expr@ and @mpmont_mexpr@. + * * Revision 1.5 2000/10/08 12:13:17 mdw * Use @MP_EQ@ instead of @MP_CMP@. * @@ -71,7 +74,7 @@ int dsa_vrfy(const dsa_param *dp, mp *y, mp *m, mp *r, mp *s) { mpmont pm, qm; mp *w; - mpmont_factor f[2]; + mp_expfactor f[2]; int ok; /* --- Ensure that all of the signature bits are in range --- */