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

CA认证

开发平台:

WINDOWS

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