forked from mysql/mysql-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy_rnd.cc
115 lines (84 loc) · 2.63 KB
/
my_rnd.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/*
Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
#include <my_rnd.h>
#if defined(HAVE_YASSL)
#if defined(YASSL_PREFIX)
#define RAND_bytes yaRAND_bytes
#endif /* YASSL_PREFIX */
#include <openssl/ssl.h>
#elif defined(HAVE_OPENSSL)
#include <openssl/rand.h>
#include <openssl/err.h>
#endif /* HAVE_YASSL */
/*
A wrapper to use OpenSSL/yaSSL PRNGs.
*/
#ifdef __cplusplus
extern "C" {
#endif
/**
Generate random number.
@param rand_st [INOUT] Structure used for number generation.
@retval Generated pseudo random number.
*/
double my_rnd(struct rand_struct *rand_st)
{
rand_st->seed1= (rand_st->seed1*3+rand_st->seed2) % rand_st->max_value;
rand_st->seed2= (rand_st->seed1+rand_st->seed2+33) % rand_st->max_value;
return (((double) rand_st->seed1) / rand_st->max_value_dbl);
}
/**
Fill a buffer with random bytes using the SSL library routines
@param buffer [OUT] Buffer to receive the random data
@param buffer_size [IN] sizeof the the buffer
@retval 1 error ocurred.
@retval 0 OK
*/
int
my_rand_buffer(unsigned char *buffer, size_t buffer_size)
{
int rc;
#if defined(HAVE_YASSL) /* YaSSL */
rc= yaSSL::RAND_bytes(buffer, buffer_size);
if (!rc)
return 1;
#elif defined(HAVE_OPENSSL)
rc= RAND_bytes(buffer, buffer_size);
if (!rc)
{
ERR_clear_error();
return 1;
}
#else /* no SSL */
#error not using an SSL library not supported
#endif
return 0;
}
/**
Generate a random number using the OpenSSL/yaSSL supplied
random number generator if available.
@param rand_st [INOUT] Structure used for number generation
only if none of the SSL libraries are
available.
@retval Generated random number.
*/
double my_rnd_ssl(struct rand_struct *rand_st)
{
unsigned int res;
if (my_rand_buffer((unsigned char *) &res, sizeof(res)))
return my_rnd(rand_st);
return (double)res / (double)UINT_MAX;
}
#ifdef __cplusplus
}
#endif