VirtualBox

source: vbox/trunk/include/iprt/rand.h@ 28718

Last change on this file since 28718 was 25645, checked in by vboxsync, 15 years ago

IPRT,DoxyFile.Core: Mopped up the errors in the IPRT doxygen run.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 10.0 KB
Line 
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
36RT_C_DECLS_BEGIN
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 */
49RTDECL(void) RTRandBytes(void *pv, size_t cb) RT_NO_THROW;
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 */
58RTDECL(int32_t) RTRandS32Ex(int32_t i32First, int32_t i32Last) RT_NO_THROW;
59
60/**
61 * Generate a 32-bit signed random number.
62 *
63 * @returns The random number.
64 */
65RTDECL(int32_t) RTRandS32(void) RT_NO_THROW;
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 */
74RTDECL(uint32_t) RTRandU32Ex(uint32_t u32First, uint32_t u32Last) RT_NO_THROW;
75
76/**
77 * Generate a 32-bit unsigned random number.
78 *
79 * @returns The random number.
80 */
81RTDECL(uint32_t) RTRandU32(void) RT_NO_THROW;
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 */
90RTDECL(int64_t) RTRandS64Ex(int64_t i64First, int64_t i64Last) RT_NO_THROW;
91
92/**
93 * Generate a 64-bit signed random number.
94 *
95 * @returns The random number.
96 */
97RTDECL(int64_t) RTRandS64(void) RT_NO_THROW;
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 */
106RTDECL(uint64_t) RTRandU64Ex(uint64_t u64First, uint64_t u64Last) RT_NO_THROW;
107
108/**
109 * Generate a 64-bit unsigned random number.
110 *
111 * @returns The random number.
112 */
113RTDECL(uint64_t) RTRandU64(void) RT_NO_THROW;
114
115
116/**
117 * Create an instance of the default random number generator.
118 *
119 * @returns IPRT status code.
120 * @param phRand Where to return the handle to the new random number
121 * generator.
122 */
123RTDECL(int) RTRandAdvCreate(PRTRAND phRand) RT_NO_THROW;
124
125/**
126 * Create an instance of the default pseudo random number generator.
127 *
128 * @returns IPRT status code.
129 * @param phRand Where to store the handle to the generator.
130 */
131RTDECL(int) RTRandAdvCreatePseudo(PRTRAND phRand) RT_NO_THROW;
132
133/**
134 * Create an instance of the Park-Miller pseudo random number generator.
135 *
136 * @returns IPRT status code.
137 * @param phRand Where to store the handle to the generator.
138 */
139RTDECL(int) RTRandAdvCreateParkMiller(PRTRAND phRand) RT_NO_THROW;
140
141/**
142 * Create an instance of the faster random number generator for the OS.
143 *
144 * @returns IPRT status code.
145 * @retval VERR_NOT_SUPPORTED on platforms which doesn't have this feature.
146 * @retval VERR_FILE_NOT_FOUND on system where the random generator hasn't
147 * been installed or configured correctly.
148 * @retval VERR_PATH_NOT_FOUND for the same reasons as VERR_FILE_NOT_FOUND.
149 *
150 * @param phRand Where to store the handle to the generator.
151 *
152 * @remarks Think /dev/urandom.
153 */
154RTDECL(int) RTRandAdvCreateSystemFaster(PRTRAND phRand) RT_NO_THROW;
155
156/**
157 * Create an instance of the truer random number generator for the OS.
158 *
159 * Don't use this unless you seriously need good random numbers because most
160 * systems will have will have problems producing sufficient entropy for this
161 * and you'll end up blocking while it accumulates.
162 *
163 * @returns IPRT status code.
164 * @retval VERR_NOT_SUPPORTED on platforms which doesn't have this feature.
165 * @retval VERR_FILE_NOT_FOUND on system where the random generator hasn't
166 * been installed or configured correctly.
167 * @retval VERR_PATH_NOT_FOUND for the same reasons as VERR_FILE_NOT_FOUND.
168 *
169 * @param phRand Where to store the handle to the generator.
170 *
171 * @remarks Think /dev/random.
172 */
173RTDECL(int) RTRandAdvCreateSystemTruer(PRTRAND phRand) RT_NO_THROW;
174
175/**
176 * Destroys a random number generator.
177 *
178 * @returns IPRT status code.
179 * @param hRand Handle to the random number generator.
180 */
181RTDECL(int) RTRandAdvDestroy(RTRAND hRand) RT_NO_THROW;
182
183/**
184 * Generic method for seeding of a random number generator.
185 *
186 * The different generators may have specialized methods for
187 * seeding, use one of those if you desire better control
188 * over ther result.
189 *
190 * @returns IPRT status code.
191 * @retval VERR_NOT_SUPPORTED if it isn't a pseudo generator.
192 *
193 * @param hRand Handle to the random number generator.
194 * @param u64Seed Seed.
195 */
196RTDECL(int) RTRandAdvSeed(RTRAND hRand, uint64_t u64Seed) RT_NO_THROW;
197
198/**
199 * Save the current state of a pseudo generator.
200 *
201 * This can be use to save the state so it can later be resumed at the same
202 * position.
203 *
204 * @returns IPRT status code.
205 * @retval VINF_SUCCESS on success. *pcbState contains the length of the
206 * returned string and pszState contains the state string.
207 * @retval VERR_BUFFER_OVERFLOW if the supplied buffer is too small. *pcbState
208 * will contain the necessary buffer size.
209 * @retval VERR_NOT_SUPPORTED by non-psuedo generators.
210 *
211 * @param hRand Handle to the random number generator.
212 * @param pszState Where to store the state. The returned string will be
213 * null terminated and printable.
214 * @param pcbState The size of the buffer pszState points to on input, the
215 * size required / used on return (including the
216 * terminator, thus the 'cb' instead of 'cch').
217 */
218RTDECL(int) RTRandAdvSaveState(RTRAND hRand, char *pszState, size_t *pcbState) RT_NO_THROW;
219
220/**
221 * Restores the state of a pseudo generator.
222 *
223 * The state must've been obtained using RTRandAdvGetState.
224 *
225 * @returns IPRT status code.
226 * @retval VERR_PARSE_ERROR if the state string is malformed.
227 * @retval VERR_NOT_SUPPORTED by non-psuedo generators.
228 *
229 * @param hRand Handle to the random number generator.
230 * @param pszState The state to load.
231 */
232RTDECL(int) RTRandAdvRestoreState(RTRAND hRand, char const *pszState) RT_NO_THROW;
233
234/**
235 * Fills a buffer with random bytes.
236 *
237 * @param hRand Handle to the random number generator.
238 * @param pv Where to store the random bytes.
239 * @param cb Number of bytes to generate.
240 */
241RTDECL(void) RTRandAdvBytes(RTRAND hRand, void *pv, size_t cb) RT_NO_THROW;
242
243/**
244 * Generate a 32-bit signed random number in the set [i32First..i32Last].
245 *
246 * @returns The random number.
247 * @param hRand Handle to the random number generator.
248 * @param i32First First number in the set.
249 * @param i32Last Last number in the set.
250 */
251RTDECL(int32_t) RTRandAdvS32Ex(RTRAND hRand, int32_t i32First, int32_t i32Last) RT_NO_THROW;
252
253/**
254 * Generate a 32-bit signed random number.
255 *
256 * @returns The random number.
257 * @param hRand Handle to the random number generator.
258 */
259RTDECL(int32_t) RTRandAdvS32(RTRAND hRand) RT_NO_THROW;
260
261/**
262 * Generate a 32-bit unsigned random number in the set [u32First..u32Last].
263 *
264 * @returns The random number.
265 * @param hRand Handle to the random number generator.
266 * @param u32First First number in the set.
267 * @param u32Last Last number in the set.
268 */
269RTDECL(uint32_t) RTRandAdvU32Ex(RTRAND hRand, uint32_t u32First, uint32_t u32Last) RT_NO_THROW;
270
271/**
272 * Generate a 32-bit unsigned random number.
273 *
274 * @returns The random number.
275 * @param hRand Handle to the random number generator.
276 */
277RTDECL(uint32_t) RTRandAdvU32(RTRAND hRand) RT_NO_THROW;
278
279/**
280 * Generate a 64-bit signed random number in the set [i64First..i64Last].
281 *
282 * @returns The random number.
283 * @param hRand Handle to the random number generator.
284 * @param i64First First number in the set.
285 * @param i64Last Last number in the set.
286 */
287RTDECL(int64_t) RTRandAdvS64Ex(RTRAND hRand, int64_t i64First, int64_t i64Last) RT_NO_THROW;
288
289/**
290 * Generate a 64-bit signed random number.
291 *
292 * @returns The random number.
293 */
294RTDECL(int64_t) RTRandAdvS64(RTRAND hRand) RT_NO_THROW;
295
296/**
297 * Generate a 64-bit unsigned random number in the set [u64First..u64Last].
298 *
299 * @returns The random number.
300 * @param hRand Handle to the random number generator.
301 * @param u64First First number in the set.
302 * @param u64Last Last number in the set.
303 */
304RTDECL(uint64_t) RTRandAdvU64Ex(RTRAND hRand, uint64_t u64First, uint64_t u64Last) RT_NO_THROW;
305
306/**
307 * Generate a 64-bit unsigned random number.
308 *
309 * @returns The random number.
310 * @param hRand Handle to the random number generator.
311 */
312RTDECL(uint64_t) RTRandAdvU64(RTRAND hRand) RT_NO_THROW;
313
314
315/** @} */
316
317RT_C_DECLS_END
318
319
320#endif
321
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette