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

CA认证

开发平台:

WINDOWS

  1. /*
  2.  *  Blum, Blum & Shub PRNG using the MPI library
  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: bbs_rand.c,v 1.1 2000/07/14 00:44:53 nelsonb%netscape.com Exp $
  36.  */
  37. #include "bbs_rand.h"
  38. #define SEED     1
  39. #define MODULUS  2
  40. /* This modulus is the product of two randomly generated 512-bit
  41.    prime integers, each of which is congruent to 3 (mod 4).          */
  42. static char *bbs_modulus = 
  43. "75A2A6E1D27393B86562B9CE7279A8403CB4258A637DAB5233465373E37837383EDC"
  44. "332282B8575927BC4172CE8C147B4894050EE9D2BDEED355C121037270CA2570D127"
  45. "7D2390CD1002263326635CC6B259148DE3A1A03201980A925E395E646A5E9164B0EC"
  46. "28559EBA58C87447245ADD0651EDA507056A1129E3A3E16E903D64B437";
  47. static int    bbs_init = 0;  /* flag set when library is initialized */
  48. static mp_int bbs_state;     /* the current state of the generator   */
  49. /* Suggested size of random seed data */
  50. int           bbs_seed_size = (sizeof(bbs_modulus) / 2);
  51. void         bbs_srand(unsigned char *data, int len)
  52. {
  53.   if((bbs_init & SEED) == 0) {
  54.     mp_init(&bbs_state);
  55.     bbs_init |= SEED;
  56.   }
  57.   mp_read_raw(&bbs_state, (char *)data, len);
  58. } /* end bbs_srand() */
  59. unsigned int bbs_rand(void)
  60. {
  61.   static mp_int   modulus;
  62.   unsigned int    result = 0, ix;
  63.   if((bbs_init & MODULUS) == 0) {
  64.     mp_init(&modulus);
  65.     mp_read_radix(&modulus, bbs_modulus, 16);
  66.     bbs_init |= MODULUS;
  67.   }
  68.   for(ix = 0; ix < sizeof(unsigned int); ix++) {
  69.     mp_digit   d;
  70.     mp_sqrmod(&bbs_state, &modulus, &bbs_state);
  71.     d = DIGIT(&bbs_state, 0);
  72.     result = (result << CHAR_BIT) | (d & UCHAR_MAX);
  73.   }
  74.   return result;
  75. } /* end bbs_rand() */
  76. /*------------------------------------------------------------------------*/
  77. /* HERE THERE BE DRAGONS                                                  */