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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
|
//
// Creator: http://www.dicelocksecurity.com
// Version: vers.5.0.0.1
//
// Copyright 2008-2011 DiceLock Security, LLC. All rights reserved.
//
// DISCLAIMER
//
// THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES,
// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
// AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
// REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
//
// DICELOCK IS A REGISTERED TRADEMARK OR TRADEMARK OF THE OWNERS.
//
#ifndef RANDOMTESTSUITE_HPP
#define RANDOMTESTSUITE_HPP
#include "diceChecker.h"
namespace DiceLockSecurity {
namespace RandomTest {
class RandomTestSuite {
protected:
/// Points the first random test in the suite
static const RandomTests firstTest;
BaseRandomTest* suite[NumberOfTests];
bool selfCreatedTest[NumberOfTests];
bool random;
MathematicalFunctions* mathFunctions;
bool selfCreatedMaths;
RandomTestErrors error;
int instantiatedTests;
int numberOfErrors;
RandomTests errorTest;
RandomTests nonRandomTest;
public:
/// Constructor, default, initializes suite and instantiates MathematicalFunctions
RandomTestSuite();
/// Constructor, initializes suite and assigns MathematicalFunctions parameter
RandomTestSuite(MathematicalFunctions*);
/// Destructor
~RandomTestSuite();
// ADDING RANDOM TESTS
/// Adds a random test to the suite
void Add(BaseRandomTest*);
/// Creates and adds a random test to the suite based in the enumerated random tests
void Add(RandomTests);
/// Creates and adds all random test to the suite
void AddAll(void);
/// Creates and adds the defined random test to the suite
void AddFrequencyTest(void);
/// Creates and adds the defined random test to the suite
void AddBlockFrequencyTest(void);
/// Creates and adds the defined random test to the suite
void AddRunsTest(void);
/// Creates and adds the defined random test to the suite
void AddLongestRunOfOnesTest(void);
/// Creates and adds the defined random test to the suite
void AddCumulativeSumForwardTest(void);
/// Creates and adds the defined random test to the suite
void AddCumulativeSumReverseTest(void);
/// Creates and adds the defined random test to the suite
void AddRankTest(void);
/// Creates and adds the defined random test to the suite
void AddUniversalTest(void);
/// Creates and adds the defined random test to the suite
void AddApproximateEntropyTest(void);
/// Creates and adds the defined random test to the suite
void AddSerialTest(void);
/// Creates and adds the defined random test to the suite
void AddDiscreteFourierTransformTest(void);
// GETTING RANDOM TESTS
/// Gets a random test to the suite based in the enumerated random tests
BaseRandomTest* GetRandomTest(RandomTests);
/// Gets the defined random test to the suite
FrequencyTest* GetFrequencyTest(void);
/// Gets the defined random test to the suite
BlockFrequencyTest* GetBlockFrequencyTest(void);
/// Gets the defined random test to the suite
RunsTest* GetRunsTest(void);
/// Gets the defined random test to the suite
LongestRunOfOnesTest* GetLongestRunOfOnesTest(void);
/// Gets the defined random test to the suite
CumulativeSumForwardTest* GetCumulativeSumForwardTest(void);
/// Gets the defined random test to the suite
CumulativeSumReverseTest* GetCumulativeSumReverseTest(void);
/// Gets the defined random test to the suite
RankTest* GetRankTest(void);
/// Gets the defined random test to the suite
UniversalTest* GetUniversalTest(void);
/// Gets the defined random test to the suite
ApproximateEntropyTest* GetApproximateEntropyTest(void);
/// Gets the defined random test to the suite
SerialTest* GetSerialTest(void);
/// Gets the defined random test to the suite
DiscreteFourierTransformTest* GetDiscreteFourierTransformTest(void);
// REMOVING RANDOM TESTS
/// Removes a random test to the suite
void Remove(BaseRandomTest*);
/// Removes a random test to the suite based in the enumerated random tests
void Remove(RandomTests);
/// Removes all random test of the suite
void RemoveAll(void);
/// Removes the defined random test to the suite
void RemoveFrequencyTest(void);
/// Removes the defined random test to the suite
void RemoveBlockFrequencyTest(void);
/// Removes the defined random test to the suite
void RemoveRunsTest(void);
/// Removes the defined random test to the suite
void RemoveLongestRunOfOnesTest(void);
/// Removes the defined random test to the suite
void RemoveCumulativeSumForwardTest(void);
/// Removes the defined random test to the suite
void RemoveCumulativeSumReverseTest(void);
/// Removes the defined random test to the suite
void RemoveRankTest(void);
/// Removes the defined random test to the suite
void RemoveUniversalTest(void);
/// Removes the defined random test to the suite
void RemoveApproximateEntropyTest(void);
/// Removes the defined random test to the suite
void RemoveSerialTest(void);
/// Removes the defined random test to the suite
void RemoveDiscreteFourierTransformTest(void);
// CHECKING RANDOMNESS
/// Tests the BaseCryptoRandomStream untill an error is found with all instantiated random tests and returns the random value
bool IsRandom(BaseCryptoRandomStream*);
/// Tests the BaseCryptoRandomStream with all instantiated random tests and returns the random value
bool TestRandom(BaseCryptoRandomStream*);
// INITIALIZE SUITE
/// Initializes all random tests in the suite
void Initialize(void);
/// Sets Alpha all random tests in the suite
void SetAlpha(double);
// GETTING SUITE RESULTS
/// Gets the RandomTestSuite random state of the last executed BaseCryptoRandomStream
bool IsRandom(void);
/// Gets the number of Random Tests that contains the suite
int GetInstantiatedTests(void);
/// Gets the minimum random stream length in bits corresponding
/// to random number test with higher random stream length
unsigned int GetMinimumLength(void);
/// Gets the corresponding random number test
/// with higher minimum random stream length in bits
RandomTests GetMinimumLengthRandomTest(void);
/// Gets the failed random test in the RandomTestSuite
RandomTests GetNonRandomTest(void);
/// Gets the RandomTestError error of the last executed BaseCryptoRandomStream
RandomTestErrors GetError(void);
/// Gets the RandomTest that produced the error of the last executed BaseCryptoRandomStream
RandomTests GetErrorTest(void);
/// Indicates if a random test object exists in the suite
bool Exist(RandomTests);
/// Gets the first random test in the RandomTestSuite
RandomTests GetFirstTest(void);
/// Gets the number of random tests that can be used in the RandomTestSuite
RandomTests GetMaximumNumberOfTests(void);
};
}
}
#endif
|