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

CA认证

开发平台:

WINDOWS

  1. /*
  2.  *  prng.c
  3.  *
  4.  *  Command-line pseudo-random number generator
  5.  *
  6.  * The contents of this file are subject to the Mozilla Public
  7.  * License Version 1.1 (the "License"); you may not use this file
  8.  * except in compliance with the License. You may obtain a copy of
  9.  * the License at http://www.mozilla.org/MPL/
  10.  *
  11.  * Software distributed under the License is distributed on an "AS
  12.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  13.  * implied. See the License for the specific language governing
  14.  * rights and limitations under the License.
  15.  *
  16.  * The Original Code is the MPI Arbitrary Precision Integer Arithmetic
  17.  * library.
  18.  *
  19.  * The Initial Developer of the Original Code is Michael J. Fromberger.
  20.  * Portions created by Michael J. Fromberger are 
  21.  * Copyright (C) 1998, 1999, 2000 Michael J. Fromberger. 
  22.  * All Rights Reserved.
  23.  *
  24.  * Contributor(s):
  25.  *
  26.  * Alternatively, the contents of this file may be used under the
  27.  * terms of the GNU General Public License Version 2 or later (the
  28.  * "GPL"), in which case the provisions of the GPL are applicable
  29.  * instead of those above.  If you wish to allow use of your
  30.  * version of this file only under the terms of the GPL and not to
  31.  * allow others to use your version of this file under the MPL,
  32.  * indicate your decision by deleting the provisions above and
  33.  * replace them with the notice and other provisions required by
  34.  * the GPL.  If you do not delete the provisions above, a recipient
  35.  * may use your version of this file under either the MPL or the GPL.
  36.  *
  37.  *  $Id: prng.c,v 1.1 2000/07/14 00:45:01 nelsonb%netscape.com Exp $
  38.  */
  39. #include <stdio.h>
  40. #include <stdlib.h>
  41. #include <limits.h>
  42. #include <time.h>
  43. #include <unistd.h>
  44. #include "bbs_rand.h"
  45. int main(int argc, char *argv[])
  46. {
  47.   unsigned char *seed;
  48.   unsigned int   ix, num = 1;
  49.   pid_t          pid;
  50.   
  51.   if(argc > 1) {
  52.     num = atoi(argv[1]);
  53.     if(num <= 0) 
  54.       num = 1;
  55.   }
  56.   pid = getpid();
  57.   srand(time(NULL) * (unsigned int)pid);
  58.   /* Not a perfect seed, but not bad */
  59.   seed = malloc(bbs_seed_size);
  60.   for(ix = 0; ix < bbs_seed_size; ix++) {
  61.     seed[ix] = rand() % UCHAR_MAX;
  62.   }
  63.   bbs_srand(seed, bbs_seed_size);
  64.   memset(seed, 0, bbs_seed_size);
  65.   free(seed);
  66.   while(num-- > 0) {
  67.     ix = bbs_rand();
  68.     printf("%un", ix);
  69.   }
  70.   return 0;
  71. }