mptest-4b.c
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:3k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /*
  2.  * mptest-4b.c
  3.  *
  4.  * Test speed of a large modular exponentiation of a primitive element
  5.  * modulo a prime.
  6.  *
  7.  * The contents of this file are subject to the Mozilla Public
  8.  * License Version 1.1 (the "License"); you may not use this file
  9.  * except in compliance with the License. You may obtain a copy of
  10.  * the License at http://www.mozilla.org/MPL/
  11.  *
  12.  * Software distributed under the License is distributed on an "AS
  13.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  14.  * implied. See the License for the specific language governing
  15.  * rights and limitations under the License.
  16.  *
  17.  * The Original Code is the MPI Arbitrary Precision Integer Arithmetic
  18.  * library.
  19.  *
  20.  * The Initial Developer of the Original Code is Michael J. Fromberger.
  21.  * Portions created by Michael J. Fromberger are 
  22.  * Copyright (C) 1998, 1999, 2000 Michael J. Fromberger. 
  23.  * All Rights Reserved.
  24.  *
  25.  * Contributor(s):
  26.  *
  27.  * Alternatively, the contents of this file may be used under the
  28.  * terms of the GNU General Public License Version 2 or later (the
  29.  * "GPL"), in which case the provisions of the GPL are applicable
  30.  * instead of those above.  If you wish to allow use of your
  31.  * version of this file only under the terms of the GPL and not to
  32.  * allow others to use your version of this file under the MPL,
  33.  * indicate your decision by deleting the provisions above and
  34.  * replace them with the notice and other provisions required by
  35.  * the GPL.  If you do not delete the provisions above, a recipient
  36.  * may use your version of this file under either the MPL or the GPL.
  37.  *
  38.  * $Id: mptest-4b.c,v 1.1 2000/07/14 00:44:44 nelsonb%netscape.com Exp $
  39.  */
  40. #include <stdio.h>
  41. #include <stdlib.h>
  42. #include <string.h>
  43. #include <limits.h>
  44. #include <time.h>
  45. #include <sys/time.h>
  46. #include "mpi.h"
  47. #include "mpprime.h"
  48. char *g_prime = 
  49.   "34BD53C07350E817CCD49721020F1754527959C421C1533244769D4CF060A8B1C3DA"
  50.   "25094BE723FB1E2369B55FEEBBE0FAC16425161BF82684062B5EC5D7D47D1B23C117"
  51.   "0FA19745E44A55E148314E582EB813AC9EE5126295E2E380CACC2F6D206B293E5ED9"
  52.   "23B54EE961A8C69CD625CE4EC38B70C649D7F014432AEF3A1C93";
  53. char *g_gen = "5";
  54. typedef struct {
  55.   unsigned int  sec;
  56.   unsigned int  usec;
  57. } instant_t;
  58. instant_t now(void)
  59. {
  60.   struct timeval clk;
  61.   instant_t      res;
  62.   res.sec = res.usec = 0;
  63.   if(gettimeofday(&clk, NULL) != 0)
  64.     return res;
  65.   res.sec = clk.tv_sec;
  66.   res.usec = clk.tv_usec;
  67.   return res;
  68. }
  69. extern mp_err s_mp_pad();
  70. int main(int argc, char *argv[])
  71. {
  72.   instant_t    start, finish;
  73.   mp_int       prime, gen, expt, res;
  74.   unsigned int ix, diff;
  75.   int          num;
  76.   srand(time(NULL));
  77.   if(argc < 2) {
  78.     fprintf(stderr, "Usage: %s <num-tests>n", argv[0]);
  79.     return 1;
  80.   }
  81.   if((num = atoi(argv[1])) < 0)
  82.     num = -num;
  83.   if(num == 0)
  84.     ++num;
  85.   mp_init(&prime); mp_init(&gen); mp_init(&res);
  86.   mp_read_radix(&prime, g_prime, 16);
  87.   mp_read_radix(&gen, g_gen, 16);
  88.   mp_init_size(&expt, USED(&prime) - 1);
  89.   s_mp_pad(&expt, USED(&prime) - 1);
  90.   printf("Testing %d modular exponentations ... n", num);
  91.   start = now();
  92.   for(ix = 0; ix < num; ix++) {
  93.     mpp_random(&expt);
  94.     mp_exptmod(&gen, &expt, &prime, &res);
  95.   }
  96.   finish = now();
  97.   diff = (finish.sec - start.sec) * 1000000;
  98.   diff += finish.usec; diff -= start.usec;
  99.   printf("%d operations took %u usec (%.3f sec)n",
  100.  num, diff, (double)diff / 1000000.0);
  101.   printf("That is %.3f sec per operation.n",
  102.  ((double)diff / 1000000.0) / num);
  103.   mp_clear(&expt);
  104.   mp_clear(&res);
  105.   mp_clear(&gen);
  106.   mp_clear(&prime);
  107.   return 0;
  108. }