powm_sec.c
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:2k
源码类别:

数学计算

开发平台:

Unix_Linux

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