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

CA认证

开发平台:

WINDOWS

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