1 | /** @file
|
---|
2 | * IPRT - Random Numbers and Byte Streams.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | * available from http://www.virtualbox.org. This file is free software;
|
---|
10 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | * General Public License (GPL) as published by the Free Software
|
---|
12 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | *
|
---|
16 | * The contents of this file may alternatively be used under the terms
|
---|
17 | * of the Common Development and Distribution License Version 1.0
|
---|
18 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
19 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
20 | * CDDL are applicable instead of those of the GPL.
|
---|
21 | *
|
---|
22 | * You may elect to license modified versions of this file under the
|
---|
23 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
24 | *
|
---|
25 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
26 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
27 | * additional information or have any questions.
|
---|
28 | */
|
---|
29 |
|
---|
30 | #ifndef ___iprt_rand_h
|
---|
31 | #define ___iprt_rand_h
|
---|
32 |
|
---|
33 | #include <iprt/cdefs.h>
|
---|
34 | #include <iprt/types.h>
|
---|
35 |
|
---|
36 | __BEGIN_DECLS
|
---|
37 |
|
---|
38 | /** @defgroup grp_rt_rand RTRand - Random Numbers and Byte Streams
|
---|
39 | * @ingroup grp_rt
|
---|
40 | * @{
|
---|
41 | */
|
---|
42 |
|
---|
43 | /**
|
---|
44 | * Fills a buffer with random bytes.
|
---|
45 | *
|
---|
46 | * @param pv Where to store the random bytes.
|
---|
47 | * @param cb Number of bytes to generate.
|
---|
48 | */
|
---|
49 | RTDECL(void) RTRandBytes(void *pv, size_t cb);
|
---|
50 |
|
---|
51 | /**
|
---|
52 | * Generate a 32-bit signed random number in the set [i32First..i32Last].
|
---|
53 | *
|
---|
54 | * @returns The random number.
|
---|
55 | * @param i32First First number in the set.
|
---|
56 | * @param i32Last Last number in the set.
|
---|
57 | */
|
---|
58 | RTDECL(int32_t) RTRandS32Ex(int32_t i32First, int32_t i32Last);
|
---|
59 |
|
---|
60 | /**
|
---|
61 | * Generate a 32-bit signed random number.
|
---|
62 | *
|
---|
63 | * @returns The random number.
|
---|
64 | */
|
---|
65 | RTDECL(int32_t) RTRandS32(void);
|
---|
66 |
|
---|
67 | /**
|
---|
68 | * Generate a 32-bit unsigned random number in the set [u32First..u32Last].
|
---|
69 | *
|
---|
70 | * @returns The random number.
|
---|
71 | * @param u32First First number in the set.
|
---|
72 | * @param u32Last Last number in the set.
|
---|
73 | */
|
---|
74 | RTDECL(uint32_t) RTRandU32Ex(uint32_t u32First, uint32_t u32Last);
|
---|
75 |
|
---|
76 | /**
|
---|
77 | * Generate a 32-bit unsigned random number.
|
---|
78 | *
|
---|
79 | * @returns The random number.
|
---|
80 | */
|
---|
81 | RTDECL(uint32_t) RTRandU32(void);
|
---|
82 |
|
---|
83 | /**
|
---|
84 | * Generate a 64-bit signed random number in the set [i64First..i64Last].
|
---|
85 | *
|
---|
86 | * @returns The random number.
|
---|
87 | * @param i64First First number in the set.
|
---|
88 | * @param i64Last Last number in the set.
|
---|
89 | */
|
---|
90 | RTDECL(int64_t) RTRandS64Ex(int64_t i64First, int64_t i64Last);
|
---|
91 |
|
---|
92 | /**
|
---|
93 | * Generate a 64-bit signed random number.
|
---|
94 | *
|
---|
95 | * @returns The random number.
|
---|
96 | */
|
---|
97 | RTDECL(int64_t) RTRandS64(void);
|
---|
98 |
|
---|
99 | /**
|
---|
100 | * Generate a 64-bit unsigned random number in the set [u64First..u64Last].
|
---|
101 | *
|
---|
102 | * @returns The random number.
|
---|
103 | * @param u64First First number in the set.
|
---|
104 | * @param u64Last Last number in the set.
|
---|
105 | */
|
---|
106 | RTDECL(uint64_t) RTRandU64Ex(uint64_t u64First, uint64_t u64Last);
|
---|
107 |
|
---|
108 | /**
|
---|
109 | * Generate a 64-bit unsigned random number.
|
---|
110 | *
|
---|
111 | * @returns The random number.
|
---|
112 | */
|
---|
113 | RTDECL(uint64_t) RTRandU64(void);
|
---|
114 |
|
---|
115 | /** @} */
|
---|
116 |
|
---|
117 | __END_DECLS
|
---|
118 |
|
---|
119 |
|
---|
120 | #endif
|
---|
121 |
|
---|