VirtualBox

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

Last change on this file was 98103, checked in by vboxsync, 17 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 10.3 KB
RevLine 
[1]1/** @file
[8245]2 * IPRT - Random Numbers and Byte Streams.
[1]3 */
4
5/*
[98103]6 * Copyright (C) 2006-2023 Oracle and/or its affiliates.
[1]7 *
[96407]8 * This file is part of VirtualBox base platform packages, as
9 * available from https://www.virtualbox.org.
[5999]10 *
[96407]11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation, in version 3 of the
14 * License.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, see <https://www.gnu.org/licenses>.
23 *
[5999]24 * The contents of this file may alternatively be used under the terms
25 * of the Common Development and Distribution License Version 1.0
[96407]26 * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
27 * in the VirtualBox distribution, in which case the provisions of the
[5999]28 * CDDL are applicable instead of those of the GPL.
29 *
30 * You may elect to license modified versions of this file under the
31 * terms and conditions of either the GPL or the CDDL or both.
[96407]32 *
33 * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
[1]34 */
35
[76557]36#ifndef IPRT_INCLUDED_rand_h
37#define IPRT_INCLUDED_rand_h
[76507]38#ifndef RT_WITHOUT_PRAGMA_ONCE
39# pragma once
40#endif
[1]41
[889]42#include <iprt/cdefs.h>
43#include <iprt/types.h>
[1]44
[20374]45RT_C_DECLS_BEGIN
[889]46
47/** @defgroup grp_rt_rand RTRand - Random Numbers and Byte Streams
48 * @ingroup grp_rt
49 * @{
50 */
51
52/**
53 * Fills a buffer with random bytes.
54 *
55 * @param pv Where to store the random bytes.
56 * @param cb Number of bytes to generate.
57 */
[57432]58RTDECL(void) RTRandBytes(void *pv, size_t cb) RT_NO_THROW_PROTO;
[889]59
60/**
61 * Generate a 32-bit signed random number in the set [i32First..i32Last].
[7170]62 *
[889]63 * @returns The random number.
64 * @param i32First First number in the set.
65 * @param i32Last Last number in the set.
66 */
[57432]67RTDECL(int32_t) RTRandS32Ex(int32_t i32First, int32_t i32Last) RT_NO_THROW_PROTO;
[889]68
69/**
70 * Generate a 32-bit signed random number.
[7170]71 *
[889]72 * @returns The random number.
73 */
[57432]74RTDECL(int32_t) RTRandS32(void) RT_NO_THROW_PROTO;
[889]75
76/**
77 * Generate a 32-bit unsigned random number in the set [u32First..u32Last].
[7170]78 *
[889]79 * @returns The random number.
80 * @param u32First First number in the set.
81 * @param u32Last Last number in the set.
82 */
[57432]83RTDECL(uint32_t) RTRandU32Ex(uint32_t u32First, uint32_t u32Last) RT_NO_THROW_PROTO;
[889]84
85/**
86 * Generate a 32-bit unsigned random number.
[7170]87 *
[889]88 * @returns The random number.
89 */
[57432]90RTDECL(uint32_t) RTRandU32(void) RT_NO_THROW_PROTO;
[889]91
92/**
[7170]93 * Generate a 64-bit signed random number in the set [i64First..i64Last].
94 *
[889]95 * @returns The random number.
[7170]96 * @param i64First First number in the set.
97 * @param i64Last Last number in the set.
[889]98 */
[57432]99RTDECL(int64_t) RTRandS64Ex(int64_t i64First, int64_t i64Last) RT_NO_THROW_PROTO;
[889]100
101/**
102 * Generate a 64-bit signed random number.
[7170]103 *
[889]104 * @returns The random number.
105 */
[57432]106RTDECL(int64_t) RTRandS64(void) RT_NO_THROW_PROTO;
[889]107
108/**
109 * Generate a 64-bit unsigned random number in the set [u64First..u64Last].
[7170]110 *
[889]111 * @returns The random number.
112 * @param u64First First number in the set.
113 * @param u64Last Last number in the set.
114 */
[57432]115RTDECL(uint64_t) RTRandU64Ex(uint64_t u64First, uint64_t u64Last) RT_NO_THROW_PROTO;
[889]116
117/**
118 * Generate a 64-bit unsigned random number.
[7170]119 *
[889]120 * @returns The random number.
121 */
[57432]122RTDECL(uint64_t) RTRandU64(void) RT_NO_THROW_PROTO;
[889]123
[11347]124
125/**
126 * Create an instance of the default random number generator.
127 *
128 * @returns IPRT status code.
[25645]129 * @param phRand Where to return the handle to the new random number
130 * generator.
[11347]131 */
[57432]132RTDECL(int) RTRandAdvCreate(PRTRAND phRand) RT_NO_THROW_PROTO;
[11347]133
134/**
135 * Create an instance of the default pseudo random number generator.
136 *
137 * @returns IPRT status code.
138 * @param phRand Where to store the handle to the generator.
139 */
[57432]140RTDECL(int) RTRandAdvCreatePseudo(PRTRAND phRand) RT_NO_THROW_PROTO;
[11347]141
142/**
143 * Create an instance of the Park-Miller pseudo random number generator.
144 *
145 * @returns IPRT status code.
146 * @param phRand Where to store the handle to the generator.
147 */
[57432]148RTDECL(int) RTRandAdvCreateParkMiller(PRTRAND phRand) RT_NO_THROW_PROTO;
[11347]149
150/**
[11558]151 * Create an instance of the faster random number generator for the OS.
[11523]152 *
153 * @returns IPRT status code.
[11558]154 * @retval VERR_NOT_SUPPORTED on platforms which doesn't have this feature.
155 * @retval VERR_FILE_NOT_FOUND on system where the random generator hasn't
156 * been installed or configured correctly.
157 * @retval VERR_PATH_NOT_FOUND for the same reasons as VERR_FILE_NOT_FOUND.
158 *
[11523]159 * @param phRand Where to store the handle to the generator.
160 *
161 * @remarks Think /dev/urandom.
162 */
[57432]163RTDECL(int) RTRandAdvCreateSystemFaster(PRTRAND phRand) RT_NO_THROW_PROTO;
[11523]164
165/**
[11558]166 * Create an instance of the truer random number generator for the OS.
[11523]167 *
168 * Don't use this unless you seriously need good random numbers because most
[11558]169 * systems will have will have problems producing sufficient entropy for this
170 * and you'll end up blocking while it accumulates.
[11523]171 *
172 * @returns IPRT status code.
[11558]173 * @retval VERR_NOT_SUPPORTED on platforms which doesn't have this feature.
174 * @retval VERR_FILE_NOT_FOUND on system where the random generator hasn't
175 * been installed or configured correctly.
176 * @retval VERR_PATH_NOT_FOUND for the same reasons as VERR_FILE_NOT_FOUND.
177 *
[11523]178 * @param phRand Where to store the handle to the generator.
179 *
180 * @remarks Think /dev/random.
181 */
[57432]182RTDECL(int) RTRandAdvCreateSystemTruer(PRTRAND phRand) RT_NO_THROW_PROTO;
[11523]183
184/**
[11347]185 * Destroys a random number generator.
186 *
187 * @returns IPRT status code.
188 * @param hRand Handle to the random number generator.
189 */
[57432]190RTDECL(int) RTRandAdvDestroy(RTRAND hRand) RT_NO_THROW_PROTO;
[11347]191
192/**
193 * Generic method for seeding of a random number generator.
194 *
195 * The different generators may have specialized methods for
196 * seeding, use one of those if you desire better control
[33540]197 * over the result.
[11347]198 *
199 * @returns IPRT status code.
[11523]200 * @retval VERR_NOT_SUPPORTED if it isn't a pseudo generator.
201 *
[11347]202 * @param hRand Handle to the random number generator.
203 * @param u64Seed Seed.
204 */
[57432]205RTDECL(int) RTRandAdvSeed(RTRAND hRand, uint64_t u64Seed) RT_NO_THROW_PROTO;
[11347]206
207/**
[11523]208 * Save the current state of a pseudo generator.
209 *
210 * This can be use to save the state so it can later be resumed at the same
211 * position.
212 *
213 * @returns IPRT status code.
214 * @retval VINF_SUCCESS on success. *pcbState contains the length of the
215 * returned string and pszState contains the state string.
216 * @retval VERR_BUFFER_OVERFLOW if the supplied buffer is too small. *pcbState
217 * will contain the necessary buffer size.
218 * @retval VERR_NOT_SUPPORTED by non-psuedo generators.
219 *
220 * @param hRand Handle to the random number generator.
221 * @param pszState Where to store the state. The returned string will be
222 * null terminated and printable.
223 * @param pcbState The size of the buffer pszState points to on input, the
224 * size required / used on return (including the
225 * terminator, thus the 'cb' instead of 'cch').
226 */
[57432]227RTDECL(int) RTRandAdvSaveState(RTRAND hRand, char *pszState, size_t *pcbState) RT_NO_THROW_PROTO;
[11523]228
229/**
230 * Restores the state of a pseudo generator.
231 *
[33540]232 * The state must have been obtained using RTRandAdvGetState.
[11523]233 *
234 * @returns IPRT status code.
235 * @retval VERR_PARSE_ERROR if the state string is malformed.
236 * @retval VERR_NOT_SUPPORTED by non-psuedo generators.
237 *
238 * @param hRand Handle to the random number generator.
239 * @param pszState The state to load.
240 */
[57432]241RTDECL(int) RTRandAdvRestoreState(RTRAND hRand, char const *pszState) RT_NO_THROW_PROTO;
[11523]242
243/**
[11347]244 * Fills a buffer with random bytes.
245 *
246 * @param hRand Handle to the random number generator.
247 * @param pv Where to store the random bytes.
248 * @param cb Number of bytes to generate.
249 */
[57432]250RTDECL(void) RTRandAdvBytes(RTRAND hRand, void *pv, size_t cb) RT_NO_THROW_PROTO;
[11347]251
252/**
253 * Generate a 32-bit signed random number in the set [i32First..i32Last].
254 *
255 * @returns The random number.
256 * @param hRand Handle to the random number generator.
257 * @param i32First First number in the set.
258 * @param i32Last Last number in the set.
259 */
[57432]260RTDECL(int32_t) RTRandAdvS32Ex(RTRAND hRand, int32_t i32First, int32_t i32Last) RT_NO_THROW_PROTO;
[11347]261
262/**
263 * Generate a 32-bit signed random number.
264 *
265 * @returns The random number.
266 * @param hRand Handle to the random number generator.
267 */
[57432]268RTDECL(int32_t) RTRandAdvS32(RTRAND hRand) RT_NO_THROW_PROTO;
[11347]269
270/**
271 * Generate a 32-bit unsigned random number in the set [u32First..u32Last].
272 *
273 * @returns The random number.
274 * @param hRand Handle to the random number generator.
275 * @param u32First First number in the set.
276 * @param u32Last Last number in the set.
277 */
[57432]278RTDECL(uint32_t) RTRandAdvU32Ex(RTRAND hRand, uint32_t u32First, uint32_t u32Last) RT_NO_THROW_PROTO;
[11347]279
280/**
281 * Generate a 32-bit unsigned random number.
282 *
283 * @returns The random number.
284 * @param hRand Handle to the random number generator.
285 */
[57432]286RTDECL(uint32_t) RTRandAdvU32(RTRAND hRand) RT_NO_THROW_PROTO;
[11347]287
288/**
289 * Generate a 64-bit signed random number in the set [i64First..i64Last].
290 *
291 * @returns The random number.
292 * @param hRand Handle to the random number generator.
293 * @param i64First First number in the set.
294 * @param i64Last Last number in the set.
295 */
[57432]296RTDECL(int64_t) RTRandAdvS64Ex(RTRAND hRand, int64_t i64First, int64_t i64Last) RT_NO_THROW_PROTO;
[11347]297
298/**
299 * Generate a 64-bit signed random number.
300 *
301 * @returns The random number.
302 */
[57432]303RTDECL(int64_t) RTRandAdvS64(RTRAND hRand) RT_NO_THROW_PROTO;
[11347]304
305/**
306 * Generate a 64-bit unsigned random number in the set [u64First..u64Last].
307 *
308 * @returns The random number.
309 * @param hRand Handle to the random number generator.
310 * @param u64First First number in the set.
311 * @param u64Last Last number in the set.
312 */
[57432]313RTDECL(uint64_t) RTRandAdvU64Ex(RTRAND hRand, uint64_t u64First, uint64_t u64Last) RT_NO_THROW_PROTO;
[11347]314
315/**
316 * Generate a 64-bit unsigned random number.
317 *
318 * @returns The random number.
319 * @param hRand Handle to the random number generator.
320 */
[57432]321RTDECL(uint64_t) RTRandAdvU64(RTRAND hRand) RT_NO_THROW_PROTO;
[11347]322
323
[889]324/** @} */
325
[20374]326RT_C_DECLS_END
[889]327
328
[76585]329#endif /* !IPRT_INCLUDED_rand_h */
[1]330
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use