7719e0f0844eb4eeb475b4c73d3ab870926472c0
[platform/upstream/curl.git] / lib / curl_rand.c
1 /***************************************************************************
2  *                                  _   _ ____  _
3  *  Project                     ___| | | |  _ \| |
4  *                             / __| | | | |_) | |
5  *                            | (__| |_| |  _ <| |___
6  *                             \___|\___/|_| \_\_____|
7  *
8  * Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al.
9  *
10  * This software is licensed as described in the file COPYING, which
11  * you should have received as part of this distribution. The terms
12  * are also available at http://curl.haxx.se/docs/copyright.html.
13  *
14  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15  * copies of the Software, and permit persons to whom the Software is
16  * furnished to do so, under the terms of the COPYING file.
17  *
18  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19  * KIND, either express or implied.
20  *
21  * $Id$
22  ***************************************************************************/
23
24 #include "setup.h"
25
26 #include <curl/curl.h>
27
28 #include "curl_rand.h"
29
30 #define _MPRINTF_REPLACE /* use our functions only */
31 #include <curl/mprintf.h>
32
33 #include "curl_memory.h"
34 /* The last #include file should be: */
35 #include "memdebug.h"
36
37 /* Private pseudo-random number seed. Unsigned integer >= 32bit. Threads
38    mutual exclusion is not implemented to acess it since we do not require
39    high quality random numbers (only used in form boudary generation). */
40
41 static unsigned int randseed;
42
43 /* Pseudo-random number support. */
44
45 unsigned int Curl_rand(void)
46 {
47   unsigned int r;
48   /* Return an unsigned 32-bit pseudo-random number. */
49   r = randseed = randseed * 1103515245 + 12345;
50   return (r << 16) | ((r >> 16) & 0xFFFF);
51 }
52
53 void Curl_srand(void)
54 {
55   /* Randomize pseudo-random number sequence. */
56
57   randseed = (unsigned int) time(NULL);
58   Curl_rand();
59   Curl_rand();
60   Curl_rand();
61 }
62