Add "device uether" to various manual pages' synopses.
[dragonfly.git] / contrib / gmp / mpz / powm_sec.c
blob2432fe4989338c2400bfdd7be3db7a25efc00031
1 /* mpz_powm_sec(res,base,exp,mod) -- Set R to (U^E) mod M.
3 Contributed to the GNU project by Torbjorn Granlund.
5 Copyright 1991, 1993, 1994, 1996, 1997, 2000, 2001, 2002, 2005, 2008, 2009
6 Free Software Foundation, Inc.
8 This file is part of the GNU MP Library.
10 The GNU MP Library is free software; you can redistribute it and/or modify
11 it under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or (at your
13 option) any later version.
15 The GNU MP Library is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
17 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
18 License for more details.
20 You should have received a copy of the GNU Lesser General Public License
21 along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. */
24 #include "gmp.h"
25 #include "gmp-impl.h"
28 void
29 mpz_powm_sec (mpz_ptr r, mpz_srcptr b, mpz_srcptr e, mpz_srcptr m)
31 mp_size_t n;
32 mp_ptr rp, tp;
33 mp_srcptr bp, ep, mp;
34 mp_size_t rn, bn, es, en;
35 TMP_DECL;
37 n = ABSIZ(m);
38 if (n == 0)
39 DIVIDE_BY_ZERO;
41 mp = PTR(m);
43 if (mp[0] % 2 == 0)
44 DIVIDE_BY_ZERO;
46 es = SIZ(e);
47 if (UNLIKELY (es <= 0))
49 mpz_t new_b;
50 if (es == 0)
52 /* b^0 mod m, b is anything and m is non-zero.
53 Result is 1 mod m, i.e., 1 or 0 depending on if m = 1. */
54 SIZ(r) = n != 1 || mp[0] != 1;
55 PTR(r)[0] = 1;
56 return;
58 DIVIDE_BY_ZERO;
61 en = es;
62 bn = ABSIZ(b);
64 TMP_MARK;
65 tp = TMP_ALLOC_LIMBS (n + mpn_powm_sec_itch (bn, en, n));
67 rp = tp; tp += n;
69 bp = PTR(b);
70 ep = PTR(e);
72 mpn_powm_sec (rp, bp, bn, ep, en, mp, n, tp);
74 rn = n;
76 MPN_NORMALIZE (rp, rn);
78 if ((ep[0] & 1) && SIZ(b) < 0 && rn != 0)
80 mpn_sub (rp, PTR(m), n, rp, rn);
81 rn = n;
82 MPN_NORMALIZE (rp, rn);
85 MPZ_REALLOC (r, rn);
86 SIZ(r) = rn;
87 MPN_COPY (PTR(r), rp, rn);
89 TMP_FREE;