1 // validat3.cpp - originally written and placed in the public domain by Wei Dai
2 //                CryptoPP::Test namespace added by JW in February 2017.
3 //                Source files split in July 2018 to expedite compiles.
4 
5 #include "pch.h"
6 
7 #define CRYPTOPP_ENABLE_NAMESPACE_WEAK 1
8 
9 #include "cryptlib.h"
10 #include "cpu.h"
11 #include "validate.h"
12 
13 #include "rng.h"
14 #include "drbg.h"
15 #include "darn.h"
16 #include "osrng.h"
17 #include "rdrand.h"
18 #include "mersenne.h"
19 #include "padlkrng.h"
20 #include "randpool.h"
21 
22 #include "gzip.h"
23 #include "channels.h"
24 
25 #include <iostream>
26 #include <iomanip>
27 #include <sstream>
28 
29 // Aggressive stack checking with VS2005 SP1 and above.
30 #if (_MSC_VER >= 1500)
31 # pragma strict_gs_check (on)
32 #endif
33 
34 #if CRYPTOPP_MSC_VERSION
35 # pragma warning(disable: 4505 4355)
36 #endif
37 
38 NAMESPACE_BEGIN(CryptoPP)
NAMESPACE_BEGIN(Test)39 NAMESPACE_BEGIN(Test)
40 
41 bool ValidateAll(bool thorough)
42 {
43 	bool pass=TestSettings();
44 	pass=TestOS_RNG() && pass;
45 	pass=TestRandomPool() && pass;
46 #if !defined(NO_OS_DEPENDENCE) && defined(OS_RNG_AVAILABLE)
47 	pass=TestAutoSeededX917() && pass;
48 #endif
49 	// pass=TestSecRandom() && pass;
50 #if defined(CRYPTOPP_EXTENDED_VALIDATION)
51 	pass=TestMersenne() && pass;
52 #endif
53 #if (CRYPTOPP_BOOL_X86 || CRYPTOPP_BOOL_X32 || CRYPTOPP_BOOL_X64)
54 	pass=TestPadlockRNG() && pass;
55 	pass=TestRDRAND() && pass;
56 	pass=TestRDSEED() && pass;
57 #endif
58 #if (CRYPTOPP_BOOL_PPC32 || CRYPTOPP_BOOL_PPC64)
59 	pass=TestDARN() && pass;
60 #endif
61 #if defined(CRYPTOPP_EXTENDED_VALIDATION)
62 	// http://github.com/weidai11/cryptopp/issues/92
63 	pass=TestSecBlock() && pass;
64 	// http://github.com/weidai11/cryptopp/issues/602
65 	pass=TestIntegerOps() && pass;
66 	// http://github.com/weidai11/cryptopp/issues/336
67 	pass=TestIntegerBitops() && pass;
68 	// http://github.com/weidai11/cryptopp/issues/64
69 	pass=TestPolynomialMod2() && pass;
70 	// http://github.com/weidai11/cryptopp/issues/360
71 	pass=TestRounding() && pass;
72 	// http://github.com/weidai11/cryptopp/issues/242
73 	pass=TestHuffmanCodes() && pass;
74 	// http://github.com/weidai11/cryptopp/issues/346
75 	pass=TestASN1Parse() && pass;
76 	// https://github.com/weidai11/cryptopp/pull/334
77 	pass=TestStringSink() && pass;
78 	// Always part of the self tests; call in Debug
79 # if defined(CRYPTOPP_ALTIVEC_AVAILABLE)
80 	pass=TestAltivecOps() && pass;
81 # endif
82 	// Always part of the self tests; call in Debug
83 	pass=ValidateBaseCode() && pass;
84 	// https://github.com/weidai11/cryptopp/issues/562
85 	pass=ValidateEncoder() && pass;
86 	// Additional tests due to no coverage
87 	pass=TestCompressors() && pass;
88 	pass=TestSharing() && pass;
89 	pass=TestEncryptors() && pass;
90 	pass=TestX25519() && pass;
91 	pass=TestEd25519() && pass;
92 #endif
93 
94 	pass=ValidateCRC32() && pass;
95 	pass=ValidateCRC32C() && pass;
96 	pass=ValidateAdler32() && pass;
97 	pass=ValidateMD2() && pass;
98 #if defined(CRYPTOPP_EXTENDED_VALIDATION)
99 	pass=ValidateMD4() && pass;
100 #endif
101 	pass=ValidateMD5() && pass;
102 	pass=ValidateSHA() && pass;
103 
104 	pass=ValidateKeccak() && pass;
105 	pass=ValidateSHA3() && pass;
106 	pass=ValidateSHAKE() && pass;
107 	pass=ValidateSHAKE_XOF() && pass;
108 
109 	pass=ValidateHashDRBG() && pass;
110 	pass=ValidateHmacDRBG() && pass;
111 
112 	pass=ValidateTiger() && pass;
113 	pass=ValidateRIPEMD() && pass;
114 	pass=ValidatePanama() && pass;
115 	pass=ValidateWhirlpool() && pass;
116 
117 	pass=ValidateSM3() && pass;
118 	pass=ValidateBLAKE2s() && pass;
119 	pass=ValidateBLAKE2b() && pass;
120 	pass=ValidatePoly1305() && pass;
121 	pass=ValidateSipHash() && pass;
122 
123 	pass=ValidateHMAC() && pass;
124 	pass=ValidateTTMAC() && pass;
125 
126 	pass=ValidatePBKDF() && pass;
127 	pass=ValidateHKDF() && pass;
128 	pass=ValidateScrypt() && pass;
129 
130 	pass=ValidateDES() && pass;
131 	pass=ValidateCipherModes() && pass;
132 	pass=ValidateIDEA() && pass;
133 	pass=ValidateSAFER() && pass;
134 	pass=ValidateRC2() && pass;
135 	pass=ValidateARC4() && pass;
136 	pass=ValidateRC5() && pass;
137 	pass=ValidateBlowfish() && pass;
138 	pass=ValidateThreeWay() && pass;
139 	pass=ValidateGOST() && pass;
140 	pass=ValidateSHARK() && pass;
141 	pass=ValidateCAST() && pass;
142 	pass=ValidateSquare() && pass;
143 	pass=ValidateSKIPJACK() && pass;
144 	pass=ValidateSEAL() && pass;
145 	pass=ValidateRC6() && pass;
146 	pass=ValidateMARS() && pass;
147 	pass=ValidateRijndael() && pass;
148 	pass=ValidateTwofish() && pass;
149 	pass=ValidateSerpent() && pass;
150 	pass=ValidateSHACAL2() && pass;
151 	pass=ValidateARIA() && pass;
152 	pass=ValidateCHAM() && pass;
153 	pass=ValidateHIGHT() && pass;
154 	pass=ValidateLEA() && pass;
155 	pass=ValidateSIMECK() && pass;
156 	pass=ValidateSIMON() && pass;
157 	pass=ValidateSPECK() && pass;
158 	pass=ValidateCamellia() && pass;
159 	pass=ValidateSalsa() && pass;
160 	pass=ValidateChaCha() && pass;
161 	pass=ValidateChaChaTLS() && pass;
162 	pass=ValidateSosemanuk() && pass;
163 	pass=ValidateRabbit() && pass;
164 	pass=ValidateHC128() && pass;
165 	pass=ValidateHC256() && pass;
166 	pass=RunTestDataFile("TestVectors/seed.txt") && pass;
167 	pass=RunTestDataFile("TestVectors/threefish.txt") && pass;
168 	pass=RunTestDataFile("TestVectors/kalyna.txt") && pass;
169 	pass=RunTestDataFile("TestVectors/sm4.txt") && pass;
170 	pass=ValidateVMAC() && pass;
171 	pass=ValidateCCM() && pass;
172 	pass=ValidateGCM() && pass;
173 	pass=ValidateXTS() && pass;
174 	pass=ValidateCMAC() && pass;
175 	pass=RunTestDataFile("TestVectors/eax.txt") && pass;
176 
177 	pass=ValidateBBS() && pass;
178 	pass=ValidateDH() && pass;
179 	pass=ValidateX25519() && pass;
180 	pass=ValidateMQV() && pass;
181 	pass=ValidateHMQV() && pass;
182 	pass=ValidateFHMQV() && pass;
183 	pass=ValidateRSA() && pass;
184 	pass=ValidateElGamal() && pass;
185 	pass=ValidateDLIES() && pass;
186 	pass=ValidateNR() && pass;
187 	pass=ValidateDSA(thorough) && pass;
188 	pass=ValidateLUC() && pass;
189 	pass=ValidateLUC_DH() && pass;
190 	pass=ValidateLUC_DL() && pass;
191 	pass=ValidateXTR_DH() && pass;
192 	pass=ValidateRabin() && pass;
193 	pass=ValidateRW() && pass;
194 	pass=ValidateECP() && pass;
195 	pass=ValidateEC2N() && pass;
196 	pass=ValidateECP_Legacy_Encrypt() && pass;
197 	pass=ValidateEC2N_Legacy_Encrypt() && pass;
198 	pass=ValidateECDSA() && pass;
199 	pass=ValidateECDSA_RFC6979() && pass;
200 	pass=ValidateECGDSA(thorough) && pass;
201 	pass=ValidateESIGN() && pass;
202 
203 	pass=ValidateX25519() && pass;
204 	pass=ValidateEd25519() && pass;
205 	pass=ValidateNaCl() && pass;
206 
207 	if (pass)
208 		std::cout << "\nAll tests passed!\n";
209 	else
210 		std::cout << "\nOops!  Not all tests passed.\n";
211 
212 	return pass;
213 }
214 
TestSettings()215 bool TestSettings()
216 {
217 	bool pass = true;
218 
219 	std::cout << "\nTesting Settings...\n\n";
220 
221 	word32 w;
222 	const byte s[] = "\x01\x02\x03\x04";
223 
224 #if (_MSC_VER >= 1400)
225 	memcpy_s(&w, 4, s, 4);
226 #else
227 	std::copy(s, s+4, reinterpret_cast<byte*>(&w));
228 #endif
229 
230 	if (w == 0x04030201L)
231 	{
232 #if (CRYPTOPP_LITTLE_ENDIAN)
233 		std::cout << "passed:  ";
234 #else
235 		std::cout << "FAILED:  ";
236 		pass = false;
237 #endif
238 		std::cout << "Your machine is little endian.\n";
239 	}
240 	else if (w == 0x01020304L)
241 	{
242 #if (CRYPTOPP_BIG_ENDIAN)
243 		std::cout << "passed:  ";
244 #else
245 		std::cout << "FAILED:  ";
246 		pass = false;
247 #endif
248 		std::cout << "Your machine is big endian.\n";
249 	}
250 	else
251 	{
252 		std::cout << "FAILED:  Your machine is neither big endian nor little endian.\n";
253 		pass = false;
254 	}
255 
256 	if (sizeof(void*) == 8)
257 	{
258 		std::cout << "passed:  Your machine is 64-bit.\n";
259 	}
260 	else if (sizeof(void*) == 4)
261 	{
262 		std::cout << "passed:  Your machine is 32-bit.\n";
263 	}
264 	else
265 	{
266 		std::cout << "FAILED:  Your machine is neither 32-bit nor 64-bit.\n";
267 		pass = false;
268 	}
269 
270 #if defined(CRYPTOPP_EXTENDED_VALIDATION)
271 	// App and library versions, http://github.com/weidai11/cryptopp/issues/371
272 	const int v1 = LibraryVersion();
273 	const int v2 = HeaderVersion();
274 	if(v1/10 == v2/10)
275 		std::cout << "passed:  ";
276 	else
277 	{
278 		std::cout << "FAILED:  ";
279 		pass = false;
280 	}
281 	std::cout << "Library version (library): " << v1 << ", header version (app): " << v2 << "\n";
282 #endif
283 
284 	if (sizeof(byte) == 1)
285 		std::cout << "passed:  ";
286 	else
287 	{
288 		std::cout << "FAILED:  ";
289 		pass = false;
290 	}
291 	std::cout << "sizeof(byte) == " << sizeof(byte) << "\n";
292 
293 	if (sizeof(word16) == 2)
294 		std::cout << "passed:  ";
295 	else
296 	{
297 		std::cout << "FAILED:  ";
298 		pass = false;
299 	}
300 	std::cout << "sizeof(word16) == " << sizeof(word16) << "\n";
301 
302 	if (sizeof(word32) == 4)
303 		std::cout << "passed:  ";
304 	else
305 	{
306 		std::cout << "FAILED:  ";
307 		pass = false;
308 	}
309 	std::cout << "sizeof(word32) == " << sizeof(word32) << "\n";
310 
311 	if (sizeof(word64) == 8)
312 		std::cout << "passed:  ";
313 	else
314 	{
315 		std::cout << "FAILED:  ";
316 		pass = false;
317 	}
318 	std::cout << "sizeof(word64) == " << sizeof(word64) << "\n";
319 
320 #ifdef CRYPTOPP_WORD128_AVAILABLE
321 	if (sizeof(word128) == 16)
322 		std::cout << "passed:  ";
323 	else
324 	{
325 		std::cout << "FAILED:  ";
326 		pass = false;
327 	}
328 	std::cout << "sizeof(word128) == " << sizeof(word128) << "\n";
329 #endif
330 
331 	if (sizeof(word) == 2*sizeof(hword)
332 #ifdef CRYPTOPP_NATIVE_DWORD_AVAILABLE
333 		&& sizeof(dword) == 2*sizeof(word)
334 #endif
335 		)
336 		std::cout << "passed:  ";
337 	else
338 	{
339 		std::cout << "FAILED:  ";
340 		pass = false;
341 	}
342 	std::cout << "sizeof(hword) == " << sizeof(hword) << ", sizeof(word) == " << sizeof(word);
343 #ifdef CRYPTOPP_NATIVE_DWORD_AVAILABLE
344 	std::cout << ", sizeof(dword) == " << sizeof(dword);
345 #endif
346 	std::cout << "\n";
347 
348 	const int cacheLineSize = GetCacheLineSize();
349 	if (cacheLineSize < 16 || cacheLineSize > 256 || !IsPowerOf2(cacheLineSize))
350 	{
351 		std::cout << "FAILED:  ";
352 		pass = false;
353 	}
354 	else
355 		std::cout << "passed:  ";
356 	std::cout << "cacheLineSize == " << cacheLineSize << "\n";
357 
358 #ifdef CRYPTOPP_CPUID_AVAILABLE
359 	bool hasSSE2 = HasSSE2();
360 	bool hasSSSE3 = HasSSSE3();
361 	bool hasSSE41 = HasSSE41();
362 	bool hasSSE42 = HasSSE42();
363 	bool hasAVX = HasAVX();
364 	bool hasAVX2 = HasAVX2();
365 	bool hasAESNI = HasAESNI();
366 	bool hasCLMUL = HasCLMUL();
367 	bool hasRDRAND = HasRDRAND();
368 	bool hasRDSEED = HasRDSEED();
369 	bool hasSHA = HasSHA();
370 	bool isP4 = IsP4();
371 
372 	std::cout << "hasSSE2 == " << hasSSE2 << ", hasSSSE3 == " << hasSSSE3;
373 	std::cout << ", hasSSE4.1 == " << hasSSE41 << ", hasSSE4.2 == " << hasSSE42;
374 	std::cout << ", hasAVX == " << hasAVX << ", hasAVX2 == " << hasAVX2;
375 	std::cout << ", hasAESNI == " << hasAESNI << ", hasCLMUL == " << hasCLMUL;
376 	std::cout << ", hasRDRAND == " << hasRDRAND << ", hasRDSEED == " << hasRDSEED;
377 	std::cout << ", hasSHA == " << hasSHA << ", isP4 == " << isP4;
378 	std::cout << "\n";
379 
380 #elif (CRYPTOPP_BOOL_ARM32 || CRYPTOPP_BOOL_ARMV8)
381 
382 # if defined(__arm__)
383 	bool hasARMv7 = HasARMv7();
384 	bool hasNEON = HasNEON();
385 
386 	std::cout << "passed:  ";
387 	std::cout << "hasARMv7 == " << hasARMv7 << ", hasNEON == " << hasNEON << "\n";
388 # else  // __arch32__ and __aarch64__
389 	bool hasCRC32 = HasCRC32();
390 	bool hasPMULL = HasPMULL();
391 	bool hasAES = HasAES();
392 	bool hasSHA1 = HasSHA1();
393 	bool hasSHA2 = HasSHA2();
394 	bool hasSHA3 = HasSHA3();
395 	bool hasSHA512 = HasSHA512();
396 	bool hasSM3 = HasSM3();
397 	bool hasSM4 = HasSM4();
398 
399 	std::cout << "passed:  hasASIMD == 1";
400 	std::cout << ", hasCRC32 == " << hasCRC32 << ", hasAES == " << hasAES;
401 	std::cout << ", hasPMULL == " << hasPMULL << ", hasSHA1 == " << hasSHA1;
402 	std::cout << ", hasSHA2 == " << hasSHA2 << ", hasSHA3 == " << hasSHA3;
403 	std::cout << ", hasSHA512 == " << hasSHA512 << ", hasSM3 == " << hasSM3;
404 	std::cout << ", hasSM4 == " << hasSM4 << "\n";
405 # endif
406 
407 #elif (CRYPTOPP_BOOL_PPC32 || CRYPTOPP_BOOL_PPC64)
408 	const bool hasAltivec = HasAltivec();
409 	const bool hasPower7 = HasPower7();
410 	const bool hasPower8 = HasPower8();
411 	const bool hasPower9 = HasPower9();
412 	const bool hasAES = HasAES();
413 	const bool hasPMULL = HasPMULL();
414 	const bool hasSHA256 = HasSHA256();
415 	const bool hasSHA512 = HasSHA512();
416 	const bool hasDARN = HasDARN();
417 
418 	std::cout << "passed:  ";
419 	std::cout << "hasAltivec == " << hasAltivec << ", hasPower7 == " << hasPower7;
420 	std::cout << ", hasPower8 == " << hasPower8 << ", hasPower9 == " << hasPower9;
421 	std::cout << ", hasAES == " << hasAES << ", hasPMULL == " << hasPMULL;
422 	std::cout << ", hasSHA256 == " << hasSHA256 << ", hasSHA512 == " << hasSHA512;
423 	std::cout << ", hasDARN == " << hasDARN << "\n";
424 
425 #endif
426 
427 	if (!pass)
428 	{
429 		std::cerr << "Some critical setting in config.h is in error.  Please fix it and recompile.\n";
430 		std::abort();
431 	}
432 	return pass;
433 }
434 
Test_RandomNumberGenerator(RandomNumberGenerator & prng,bool drain=false)435 bool Test_RandomNumberGenerator(RandomNumberGenerator& prng, bool drain=false)
436 {
437 	bool pass = true, result = true;
438 	const size_t GENERATE_SIZE = 1024*10, DISCARD_SIZE = 256, ENTROPY_SIZE = 32;
439 
440 	if(drain)
441 	{
442 		RandomNumberSource(prng, UINT_MAX, true, new Redirector(TheBitBucket()));
443 	}
444 
445 	MeterFilter meter(new Redirector(TheBitBucket()));
446 	RandomNumberSource(prng, GENERATE_SIZE, true, new Deflator(new Redirector(meter)));
447 
448 	if (meter.GetTotalBytes() < GENERATE_SIZE)
449 	{
450 		pass = false;
451 		result = false;
452 	}
453 
454 	if (!pass)
455 		std::cout << "FAILED:";
456 	else
457 		std::cout << "passed:";
458 	std::cout << "  " << GENERATE_SIZE << " generated bytes compressed to ";
459 	std::cout << meter.GetTotalBytes() << " bytes by DEFLATE\n";
460 
461 	try
462 	{
463 		pass = true;
464 		if(prng.CanIncorporateEntropy())
465 		{
466 			SecByteBlock entropy(ENTROPY_SIZE);
467 			GlobalRNG().GenerateBlock(entropy, entropy.SizeInBytes());
468 
469 			prng.IncorporateEntropy(entropy, entropy.SizeInBytes());
470 			prng.IncorporateEntropy(entropy, entropy.SizeInBytes()-1);
471 			prng.IncorporateEntropy(entropy, entropy.SizeInBytes()-2);
472 			prng.IncorporateEntropy(entropy, entropy.SizeInBytes()-3);
473 		}
474 	}
475 	catch (const Exception& /*ex*/)
476 	{
477 		pass = false;
478 		result = false;
479 	}
480 
481 	if (!pass)
482 		std::cout << "FAILED:";
483 	else
484 		std::cout << "passed:";
485 	std::cout << "  IncorporateEntropy with " << 4*ENTROPY_SIZE << " bytes\n";
486 
487 	try
488 	{
489 		word32 val = prng.GenerateWord32();
490 		val = prng.GenerateWord32((val & 0xff), 0xffffffff - (val & 0xff));
491 
492 		prng.GenerateBlock(reinterpret_cast<byte*>(&val), 4);
493 		prng.GenerateBlock(reinterpret_cast<byte*>(&val), 3);
494 		prng.GenerateBlock(reinterpret_cast<byte*>(&val), 2);
495 		prng.GenerateBlock(reinterpret_cast<byte*>(&val), 1);
496 	}
497 	catch (const Exception&)
498 	{
499 		pass = false;
500 		result = false;
501 	}
502 
503 	if (!pass)
504 		std::cout << "FAILED:";
505 	else
506 		std::cout << "passed:";
507 	std::cout << "  GenerateWord32 and Crop\n";
508 
509 	try
510 	{
511 		pass = true;
512 		prng.DiscardBytes(DISCARD_SIZE);
513 		prng.DiscardBytes(DISCARD_SIZE-1);
514 		prng.DiscardBytes(DISCARD_SIZE-2);
515 		prng.DiscardBytes(DISCARD_SIZE-3);
516 	}
517 	catch (const Exception&)
518 	{
519 		pass = false;
520 		result = false;
521 	}
522 
523 	if (!pass)
524 		std::cout << "FAILED:";
525 	else
526 		std::cout << "passed:";
527 	std::cout << "  DiscardBytes with " << 4*DISCARD_SIZE << " bytes\n";
528 
529 	// Miscellaneous for code coverage
530 	(void)prng.AlgorithmName();  // "unknown"
531 
532 	CRYPTOPP_ASSERT(result);
533 	return result;
534 }
535 
TestOS_RNG()536 bool TestOS_RNG()
537 {
538 	bool pass = true;
539 
540 	member_ptr<RandomNumberGenerator> rng;
541 
542 #ifdef BLOCKING_RNG_AVAILABLE
543 	try {rng.reset(new BlockingRng);}
544 	catch (const OS_RNG_Err &) {}
545 
546 	if (rng.get())
547 	{
548 		std::cout << "\nTesting operating system provided blocking random number generator...\n\n";
549 
550 		MeterFilter meter(new Redirector(TheBitBucket()));
551 		RandomNumberSource test(*rng, UINT_MAX, false, new Deflator(new Redirector(meter)));
552 		unsigned long total=0;
553 		time_t t = time(NULLPTR), t1 = 0;
554 
555 		// check that it doesn't take too long to generate a reasonable amount of randomness
556 		while (total < 16 && (t1 < 10 || total*8 > (unsigned long)t1))
557 		{
558 			test.Pump(1);
559 			total += 1;
560 			t1 = time(NULLPTR) - t;
561 		}
562 
563 		if (total < 16)
564 		{
565 			std::cout << "FAILED:";
566 			pass = false;
567 		}
568 		else
569 			std::cout << "passed:";
570 		std::cout << "  it took " << long(t1) << " seconds to generate " << total << " bytes" << std::endl;
571 
572 		test.AttachedTransformation()->MessageEnd();
573 
574 		if (meter.GetTotalBytes() < total)
575 		{
576 			std::cout << "FAILED:";
577 			pass = false;
578 		}
579 		else
580 			std::cout << "passed:";
581 		std::cout << "  " << total << " generated bytes compressed to " << meter.GetTotalBytes() << " bytes by DEFLATE\n";
582 
583 		try
584 		{
585 			// Miscellaneous for code coverage
586 			RandomNumberGenerator& prng = *rng.get();
587 			(void)prng.AlgorithmName();
588 			word32 result = prng.GenerateWord32();
589 			result = prng.GenerateWord32((result & 0xff), 0xffffffff - (result & 0xff));
590 			prng.GenerateBlock(reinterpret_cast<byte*>(&result), 4);
591 			prng.GenerateBlock(reinterpret_cast<byte*>(&result), 3);
592 			prng.GenerateBlock(reinterpret_cast<byte*>(&result), 2);
593 			prng.GenerateBlock(reinterpret_cast<byte*>(&result), 1);
594 			prng.GenerateBlock(reinterpret_cast<byte*>(&result), 0);
595 			pass = true;
596 		}
597 		catch (const Exception&)
598 		{
599 			pass = false;
600 		}
601 
602 		if (!pass)
603 			std::cout << "FAILED:";
604 		else
605 			std::cout << "passed:";
606 		std::cout << "  GenerateWord32 and Crop\n";
607 	}
608 	else
609 		std::cout << "\nNo operating system provided blocking random number generator, skipping test." << std::endl;
610 #endif
611 
612 #ifdef NONBLOCKING_RNG_AVAILABLE
613 	try {rng.reset(new NonblockingRng);}
614 	catch (OS_RNG_Err &) {}
615 
616 	if (rng.get())
617 	{
618 		std::cout << "\nTesting operating system provided nonblocking random number generator...\n\n";
619 
620 		pass = Test_RandomNumberGenerator(*rng.get()) && pass;
621 	}
622 	else
623 		std::cout << "\nNo operating system provided non-blocking random number generator, skipping test." << std::endl;
624 #endif
625 
626 	CRYPTOPP_ASSERT(pass);
627 	return pass;
628 }
629 
TestRandomPool()630 bool TestRandomPool()
631 {
632 	member_ptr<RandomNumberGenerator> prng;
633 	bool pass=true;
634 
635 	try {prng.reset(new RandomPool);}
636 	catch (Exception &) {}
637 
638 	if(prng.get())
639 	{
640 		std::cout << "\nTesting RandomPool generator...\n\n";
641 		pass = Test_RandomNumberGenerator(*prng.get()) && pass;
642 	}
643 
644 #if !defined(NO_OS_DEPENDENCE) && defined(OS_RNG_AVAILABLE)
645 	try {prng.reset(new AutoSeededRandomPool);}
646 	catch (Exception &) {}
647 
648 	if(prng.get())
649 	{
650 		std::cout << "\nTesting AutoSeeded RandomPool generator...\n\n";
651 		pass = Test_RandomNumberGenerator(*prng.get()) && pass;
652 	}
653 #endif
654 
655 	// Old, PGP 2.6 style RandomPool. Added because users were still having problems
656 	//  with it in 2017. The missing functionality was a barrier to upgrades.
657 	try {prng.reset(new OldRandomPool);}
658 	catch (Exception &) {}
659 
660 	if(prng.get())
661 	{
662 		std::cout << "\nTesting OldRandomPool generator...\n\n";
663 		pass = Test_RandomNumberGenerator(*prng.get()) && pass;
664 
665 		// https://github.com/weidai11/cryptopp/issues/452
666 		byte actual[32], expected[32] = {
667 			0x41,0xD1,0xEF,0x8F,0x10,0x3C,0xE2,0x94,
668 			0x47,0xC0,0xC3,0x86,0x66,0xBC,0x86,0x09,
669 			0x57,0x77,0x73,0x91,0x57,0x4D,0x93,0x66,
670 			0xD1,0x13,0xE1,0xBA,0x07,0x49,0x8F,0x75
671 		};
672 
673 		prng.reset(new OldRandomPool);
674 		RandomNumberGenerator& old = *prng.get();
675 
676 		SecByteBlock seed(384);
677 		for (size_t i=0; i<384; ++i)
678 			seed[i] = static_cast<byte>(i);
679 		old.IncorporateEntropy(seed, seed.size());
680 
681 		old.GenerateBlock(actual, sizeof(actual));
682 		pass = (0 == std::memcmp(actual, expected, sizeof(expected))) && pass;
683 
684 		if (!pass)
685 			std::cout << "FAILED:";
686 		else
687 			std::cout << "passed:";
688 		std::cout << "  Expected sequence from PGP-style RandomPool (circa 2007)\n";
689 	}
690 
691 	return pass;
692 }
693 
694 #if !defined(NO_OS_DEPENDENCE) && defined(OS_RNG_AVAILABLE)
TestAutoSeededX917()695 bool TestAutoSeededX917()
696 {
697 	// This tests Auto-Seeding and GenerateIntoBufferedTransformation.
698 	std::cout << "\nTesting AutoSeeded X917 generator...\n\n";
699 
700 	AutoSeededX917RNG<AES> prng;
701 	return Test_RandomNumberGenerator(prng);
702 }
703 #endif
704 
705 #if defined(CRYPTOPP_EXTENDED_VALIDATION)
TestMersenne()706 bool TestMersenne()
707 {
708 	std::cout << "\nTesting Mersenne Twister...\n\n";
709 
710 	member_ptr<RandomNumberGenerator> rng;
711 	bool pass = true;
712 
713 	try {rng.reset(new MT19937ar);}
714 	catch (const PadlockRNG_Err &) {}
715 
716 	if(rng.get())
717 	{
718 		pass = Test_RandomNumberGenerator(*rng.get());
719 	}
720 
721 	// Reset state
722 	try {rng.reset(new MT19937ar);}
723 	catch (const PadlockRNG_Err &) {}
724 
725 	if(rng.get())
726 	{
727 		// First 10; http://create.stephan-brumme.com/mersenne-twister/
728 		word32 result[10], expected[10] = {
729 			0xD091BB5C, 0x22AE9EF6, 0xE7E1FAEE, 0xD5C31F79,
730 			0x2082352C, 0xF807B7DF, 0xE9D30005, 0x3895AFE1,
731 			0xA1E24BBA, 0x4EE4092B
732 		};
733 
734 		rng->GenerateBlock(reinterpret_cast<byte*>(result), sizeof(result));
735 		pass = (0 == std::memcmp(result, expected, sizeof(expected))) && pass;
736 
737 		if (!pass)
738 			std::cout << "FAILED:";
739 		else
740 			std::cout << "passed:";
741 		std::cout << "  Expected sequence from MT19937\n";
742 	}
743 
744 	return pass;
745 }
746 #endif
747 
748 #if (CRYPTOPP_BOOL_X86 || CRYPTOPP_BOOL_X32 || CRYPTOPP_BOOL_X64)
TestPadlockRNG()749 bool TestPadlockRNG()
750 {
751 	std::cout << "\nTesting Padlock RNG generator...\n\n";
752 
753 	member_ptr<RandomNumberGenerator> rng;
754 	bool pass = true, fail;
755 
756 	try {rng.reset(new PadlockRNG);}
757 	catch (const PadlockRNG_Err &) {}
758 
759 	if (rng.get())
760 	{
761 		PadlockRNG& padlock = dynamic_cast<PadlockRNG&>(*rng.get());
762 		pass = Test_RandomNumberGenerator(padlock);
763 
764 		SecByteBlock zero(16), one(16), t(16);
765 		std::memset(zero, 0x00, zero.size());
766 		std::memset( one, 0xff,  one.size());
767 
768 		// Cryptography Research, Inc tests
769 		word32 oldDivisor = padlock.SetDivisor(0);
770 		padlock.GenerateBlock(t, t.size());
771 		word32 msr = padlock.GetMSR();
772 		padlock.SetDivisor(oldDivisor);
773 
774 		// Bit 6 should be set
775 		fail = !(msr & (1 << 6U));
776 		pass &= !fail;
777 		if (fail)
778 			std::cout << "FAILED:";
779 		else
780 			std::cout << "passed:";
781 		std::cout << "  VIA RNG is activated\n";
782 
783 		// Bit 13 should be unset
784 		fail = !!(msr & (1 << 13U));
785 		pass &= !fail;
786 		if (fail)
787 			std::cout << "FAILED:";
788 		else
789 			std::cout << "passed:";
790 		std::cout << "  von Neumann corrector is activated\n";
791 
792 		// Bit 14 should be unset
793 		fail = !!(msr & (1 << 14U));
794 		pass &= !fail;
795 		if (fail)
796 			std::cout << "FAILED:";
797 		else
798 			std::cout << "passed:";
799 		std::cout << "  String filter is deactivated\n";
800 
801 		// Bit 12:10 should be unset
802 		fail = !!(msr & (0x7 << 10U));
803 		pass &= !fail;
804 		if (fail)
805 			std::cout << "FAILED:";
806 		else
807 			std::cout << "passed:";
808 		std::cout << "  Bias voltage is unmodified\n";
809 
810 		fail = false;
811 		if (t == zero || t == one)
812 			fail = true;
813 
814 		pass &= !fail;
815 		if (fail)
816 			std::cout << "FAILED:";
817 		else
818 			std::cout << "passed:";
819 		std::cout << "  All 0's or all 1's test\n";
820 	}
821 	else
822 		std::cout << "Padlock RNG generator not available, skipping test.\n";
823 
824 	return pass;
825 }
826 
TestRDRAND()827 bool TestRDRAND()
828 {
829 	std::cout << "\nTesting RDRAND generator...\n\n";
830 
831 	bool pass = true;
832 	member_ptr<RandomNumberGenerator> rng;
833 
834 	try {rng.reset(new RDRAND);}
835 	catch (const RDRAND_Err &) {}
836 
837 	if (rng.get())
838 	{
839 		RDRAND& rdrand = dynamic_cast<RDRAND&>(*rng.get());
840 		pass = Test_RandomNumberGenerator(rdrand) && pass;
841 
842 		MaurerRandomnessTest maurer;
843 		const unsigned int SIZE = 1024*10;
844 		RandomNumberSource(rdrand, SIZE, true, new Redirector(maurer));
845 
846 		CRYPTOPP_ASSERT(0 == maurer.BytesNeeded());
847 		const double mv = maurer.GetTestValue();
848 		if (mv < 0.98f)
849 			pass = false;
850 
851 		std::ostringstream oss;
852 		oss.flags(std::ios::fixed);
853 		oss.precision(6);
854 
855 		if (!pass)
856 			oss << "FAILED:";
857 		else
858 			oss << "passed:";
859 		oss << "  Maurer Randomness Test returned value " << mv << "\n";
860 		std::cout << oss.str();
861 	}
862 	else
863 		std::cout << "RDRAND generator not available, skipping test.\n";
864 
865 	return pass;
866 }
867 
TestRDSEED()868 bool TestRDSEED()
869 {
870 	std::cout << "\nTesting RDSEED generator...\n\n";
871 
872 	bool pass = true;
873 	member_ptr<RandomNumberGenerator> rng;
874 
875 	try {rng.reset(new RDSEED);}
876 	catch (const RDSEED_Err &) {}
877 
878 	if (rng.get())
879 	{
880 		RDSEED& rdseed = dynamic_cast<RDSEED&>(*rng.get());
881 		pass = Test_RandomNumberGenerator(rdseed) && pass;
882 
883 		MaurerRandomnessTest maurer;
884 		const unsigned int SIZE = 1024*10;
885 		RandomNumberSource(rdseed, SIZE, true, new Redirector(maurer));
886 
887 		CRYPTOPP_ASSERT(0 == maurer.BytesNeeded());
888 		const double mv = maurer.GetTestValue();
889 		if (mv < 0.98f)
890 			pass = false;
891 
892 		std::ostringstream oss;
893 		oss.flags(std::ios::fixed);
894 		oss.precision(6);
895 
896 		if (!pass)
897 			oss << "FAILED:";
898 		else
899 			oss << "passed:";
900 		oss << "  Maurer Randomness Test returned value " << mv << "\n";
901 		std::cout << oss.str();
902 	}
903 	else
904 		std::cout << "RDSEED generator not available, skipping test.\n";
905 
906 	return pass;
907 }
908 #endif // x86, x32, or x64
909 
910 #if (CRYPTOPP_BOOL_PPC32 || CRYPTOPP_BOOL_PPC64)
TestDARN()911 bool TestDARN()
912 {
913 	std::cout << "\nTesting DARN generator...\n\n";
914 
915 	bool pass = true;
916 	member_ptr<RandomNumberGenerator> rng;
917 
918 	try {rng.reset(new DARN);}
919 	catch (const DARN_Err &) {}
920 
921 	if (rng.get())
922 	{
923 		DARN& darn = dynamic_cast<DARN&>(*rng.get());
924 		pass = Test_RandomNumberGenerator(darn) && pass;
925 
926 		MaurerRandomnessTest maurer;
927 		const unsigned int SIZE = 1024*10;
928 		RandomNumberSource(darn, SIZE, true, new Redirector(maurer));
929 
930 		CRYPTOPP_ASSERT(0 == maurer.BytesNeeded());
931 		const double mv = maurer.GetTestValue();
932 		if (mv < 0.98f)
933 			pass = false;
934 
935 		std::ostringstream oss;
936 		oss.flags(std::ios::fixed);
937 		oss.precision(6);
938 
939 		if (!pass)
940 			oss << "FAILED:";
941 		else
942 			oss << "passed:";
943 		oss << "  Maurer Randomness Test returned value " << mv << "\n";
944 		std::cout << oss.str();
945 	}
946 	else
947 		std::cout << "DARN generator not available, skipping test.\n";
948 
949 	return pass;
950 }
951 #endif  // PPC32 or PPC64
952 
ValidateHashDRBG()953 bool ValidateHashDRBG()
954 {
955 	std::cout << "\nTesting NIST Hash DRBGs...\n\n";
956 	bool pass=true, fail;
957 
958 	// # CAVS 14.3
959 	// # DRBG800-90A information for "drbg_pr"
960 	// # Generated on Tue Apr 02 15:32:09 2013
961 
962 	{
963 		// [SHA-1], [PredictionResistance = False], [EntropyInputLen = 128], [NonceLen = 64]
964 		// [PersonalizationStringLen = 0], [AdditionalInputLen = 0], [ReturnedBitsLen = 640]
965 		const byte entropy1[] = "\x16\x10\xb8\x28\xcc\xd2\x7d\xe0\x8c\xee\xa0\x32\xa2\x0e\x92\x08";
966 		const byte entropy2[] = "\x72\xd2\x8c\x90\x8e\xda\xf9\xa4\xd1\xe5\x26\xd8\xf2\xde\xd5\x44";
967 		const byte nonce[] = "\x49\x2c\xf1\x70\x92\x42\xf6\xb5";
968 
969 		Hash_DRBG<SHA1, 128/8, 440/8> drbg(entropy1, 16, nonce, 8);
970 		drbg.IncorporateEntropy(entropy2, 16);
971 
972 		SecByteBlock result(80);
973 		drbg.GenerateBlock(result, result.size());
974 		drbg.GenerateBlock(result, result.size());
975 
976 		const byte expected[] = "\x56\xF3\x3D\x4F\xDB\xB9\xA5\xB6\x4D\x26\x23\x44\x97\xE9\xDC\xB8\x77\x98\xC6\x8D"
977 			"\x08\xF7\xC4\x11\x99\xD4\xBD\xDF\x97\xEB\xBF\x6C\xB5\x55\x0E\x5D\x14\x9F\xF4\xD5"
978 			"\xBD\x0F\x05\xF2\x5A\x69\x88\xC1\x74\x36\x39\x62\x27\x18\x4A\xF8\x4A\x56\x43\x35"
979 			"\x65\x8E\x2F\x85\x72\xBE\xA3\x33\xEE\xE2\xAB\xFF\x22\xFF\xA6\xDE\x3E\x22\xAC\xA2";
980 
981 		fail = !!memcmp(result, expected, 640/8);
982 		pass = !fail && pass;
983 
984 		std::cout << (fail ? "FAILED   " : "passed   ") << "Hash_DRBG SHA1/128/440 (COUNT=0, E=16, N=8)\n";
985 	}
986 
987 	{
988 		// [SHA-1], [PredictionResistance = False], [EntropyInputLen = 128], [NonceLen = 64]
989 		// [PersonalizationStringLen = 0], [AdditionalInputLen = 0], [ReturnedBitsLen = 640]
990 		const byte entropy1[] = "\x55\x08\x75\xb7\x4e\xc1\x1f\x90\x67\x78\xa3\x1a\x37\xa3\x29\xfd";
991 		const byte entropy2[] = "\x96\xc6\x39\xec\x14\x9f\x6b\x28\xe2\x79\x3b\xb9\x37\x9e\x60\x67";
992 		const byte nonce[] = "\x08\xdd\x8c\xd3\x5b\xfa\x00\x94";
993 
994 		Hash_DRBG<SHA1, 128/8, 440/8> drbg(entropy1, 16, nonce, 8);
995 		drbg.IncorporateEntropy(entropy2, 16);
996 
997 		SecByteBlock result(80);
998 		drbg.GenerateBlock(result, result.size());
999 		drbg.GenerateBlock(result, result.size());
1000 
1001 		const byte expected[] = "\xEE\x44\xC6\xCF\x2C\x0C\x73\xA8\xAC\x4C\xA5\x6C\x0E\x71\x2C\xA5\x50\x9A\x19\x5D"
1002 			"\xE4\x5B\x8D\x2B\xC9\x40\xA7\xDB\x66\xC3\xEB\x2A\xA1\xBD\xB4\xDD\x76\x85\x12\x45"
1003 			"\x80\x2E\x68\x05\x4A\xAB\xA8\x7C\xD6\x3A\xD3\xE5\xC9\x7C\x06\xE7\xA3\x9F\xF6\xF9"
1004 			"\x8E\xB3\xD9\x72\xD4\x11\x35\xE5\xE7\x46\x1B\x49\x9C\x56\x45\x6A\xBE\x7F\x77\xD4";
1005 
1006 		fail = !!memcmp(result, expected, 640/8);
1007 		pass = !fail && pass;
1008 
1009 		std::cout << (fail ? "FAILED   " : "passed   ") << "Hash_DRBG SHA1/128/440 (COUNT=1, E=16, N=8)\n";
1010 	}
1011 
1012 	{
1013 		// [SHA-1], [PredictionResistance = False], [EntropyInputLen = 128], [NonceLen = 64]
1014 		// [PersonalizationStringLen = 0], [AdditionalInputLen = 128], [ReturnedBitsLen = 640]
1015 		const byte entropy1[] = "\xd9\xba\xb5\xce\xdc\xa9\x6f\x61\x78\xd6\x45\x09\xa0\xdf\xdc\x5e";
1016 		const byte entropy2[] = "\xc6\xba\xd0\x74\xc5\x90\x67\x86\xf5\xe1\xf3\x20\x99\xf5\xb4\x91";
1017 		const byte nonce[] = "\xda\xd8\x98\x94\x14\x45\x0e\x01";
1018 		const byte additional1[] = "\x3e\x6b\xf4\x6f\x4d\xaa\x38\x25\xd7\x19\x4e\x69\x4e\x77\x52\xf7";
1019 		const byte additional2[] = "\x04\xfa\x28\x95\xaa\x5a\x6f\x8c\x57\x43\x34\x3b\x80\x5e\x5e\xa4";
1020 		const byte additional3[] = "\xdf\x5d\xc4\x59\xdf\xf0\x2a\xa2\xf0\x52\xd7\x21\xec\x60\x72\x30";
1021 
1022 		Hash_DRBG<SHA1, 128/8, 440/8> drbg(entropy1, 16, nonce, 8);
1023 		drbg.IncorporateEntropy(entropy2, 16, additional1, 16);
1024 
1025 		SecByteBlock result(80);
1026 		drbg.GenerateBlock(additional2, 16, result, result.size());
1027 		drbg.GenerateBlock(additional3, 16, result, result.size());
1028 
1029 		const byte expected[] = "\xC4\x8B\x89\xF9\xDA\x3F\x74\x82\x45\x55\x5D\x5D\x03\x3B\x69\x3D\xD7\x1A\x4D\xF5"
1030 			"\x69\x02\x05\xCE\xFC\xD7\x20\x11\x3C\xC2\x4E\x09\x89\x36\xFF\x5E\x77\xB5\x41\x53"
1031 			"\x58\x70\xB3\x39\x46\x8C\xDD\x8D\x6F\xAF\x8C\x56\x16\x3A\x70\x0A\x75\xB2\x3E\x59"
1032 			"\x9B\x5A\xEC\xF1\x6F\x3B\xAF\x6D\x5F\x24\x19\x97\x1F\x24\xF4\x46\x72\x0F\xEA\xBE";
1033 
1034 		fail = !!memcmp(result, expected, 640/8);
1035 		pass = !fail && pass;
1036 
1037 		std::cout << (fail ? "FAILED   " : "passed   ") << "Hash_DRBG SHA1/128/440 (C0UNT=0, E=16, N=8, A=16)\n";
1038 	}
1039 
1040 	{
1041 		// [SHA-1], [PredictionResistance = False], [EntropyInputLen = 128], [NonceLen = 64]
1042 		// [PersonalizationStringLen = 0], [AdditionalInputLen = 128], [ReturnedBitsLen = 640]
1043 		const byte entropy1[] = "\x28\x00\x0f\xbf\xf0\x57\x22\xc8\x89\x93\x06\xc2\x9b\x50\x78\x0a";
1044 		const byte entropy2[] = "\xd9\x95\x8e\x8c\x08\xaf\x5a\x41\x0e\x91\x9b\xdf\x40\x8e\x5a\x0a";
1045 		const byte nonce[] = "\x11\x2f\x6e\x20\xc0\x29\xed\x3f";
1046 		const byte additional1[] = "\x91\x1d\x96\x5b\x6e\x77\xa9\x6c\xfe\x3f\xf2\xd2\xe3\x0e\x2a\x86";
1047 		const byte additional2[] = "\xcd\x44\xd9\x96\xab\x05\xef\xe8\x27\xd3\x65\x83\xf1\x43\x18\x2c";
1048 		const byte additional3[] = "\x9f\x6a\x31\x82\x12\x18\x4e\x70\xaf\x5d\x00\x14\x1f\x42\x82\xf6";
1049 
1050 		Hash_DRBG<SHA1, 128/8, 440/8> drbg(entropy1, 16, nonce, 8);
1051 		drbg.IncorporateEntropy(entropy2, 16, additional1, 16);
1052 
1053 		SecByteBlock result(80);
1054 		drbg.GenerateBlock(additional2, 16, result, result.size());
1055 		drbg.GenerateBlock(additional3, 16, result, result.size());
1056 
1057 		const byte expected[] = "\x54\x61\x65\x92\x1E\x71\x4A\xD1\x39\x02\x2F\x97\xD2\x65\x3F\x0D\x47\x69\xB1\x4A"
1058 			"\x3E\x6E\xEF\xA1\xA0\x16\xD6\x9E\xA9\x7F\x51\xD5\x81\xDC\xAA\xCF\x66\xF9\xB1\xE8"
1059 			"\x06\x94\x41\xD6\xB5\xC5\x44\x60\x54\x07\xE8\xE7\xDC\x1C\xD8\xE4\x70\xAD\x84\x77"
1060 			"\x5A\x65\x31\xBE\xE0\xFC\x81\x36\xE2\x8F\x0B\xFE\xEB\xE1\x98\x62\x7E\x98\xE0\xC1";
1061 
1062 		fail = !!memcmp(result, expected, 640/8);
1063 		pass = !fail && pass;
1064 
1065 		std::cout << (fail ? "FAILED   " : "passed   ") << "Hash_DRBG SHA1/128/440 (C0UNT=1, E=16, N=8, A=16)\n";
1066 	}
1067 
1068 	{
1069 		// [SHA-1], [PredictionResistance = False], [EntropyInputLen = 128], [NonceLen = 64]
1070 		// [PersonalizationStringLen = 128], [AdditionalInputLen = 0], [ReturnedBitsLen = 640]
1071 		const byte entropy1[] = "\x0e\xd5\x4c\xef\x44\x5c\x61\x7d\x58\x86\xe0\x34\xc0\x97\x36\xd4";
1072 		const byte entropy2[] = "\x0b\x90\x27\xb8\x01\xe7\xf7\x2e\xe6\xec\x50\x2b\x8b\x6b\xd7\x11";
1073 		const byte nonce[] = "\x2c\x8b\x07\x13\x55\x6c\x91\x6f";
1074 		const byte personalization[] = "\xf3\x37\x8e\xa1\x45\x34\x30\x41\x12\xe0\xee\x57\xe9\xb3\x4a\x4b";
1075 
1076 		Hash_DRBG<SHA1, 128/8, 440/8> drbg(entropy1, 16, nonce, 8, personalization, 16);
1077 		drbg.IncorporateEntropy(entropy2, 16);
1078 
1079 		SecByteBlock result(80);
1080 		drbg.GenerateBlock(result, result.size());
1081 		drbg.GenerateBlock(result, result.size());
1082 
1083 		const byte expected[] = "\x55\x37\x0E\xD4\xB7\xCA\xA4\xBB\x67\x3A\x0F\x58\x40\xB3\x9F\x76\x4E\xDA\xD2\x85"
1084 			"\xD5\x6F\x01\x8F\x2D\xA7\x54\x4B\x0E\x66\x39\x62\x35\x96\x1D\xB7\xF6\xDA\xFB\x30"
1085 			"\xB6\xC5\x68\xD8\x40\x6E\x2B\xD4\x3D\x23\xEB\x0F\x10\xBA\x5F\x24\x9C\xC9\xE9\x4A"
1086 			"\xD3\xA5\xF1\xDF\xA4\xF2\xB4\x80\x40\x91\xED\x8C\xD6\x6D\xE7\xB7\x53\xB2\x09\xD5";
1087 
1088 		fail = !!memcmp(result, expected, 640/8);
1089 		pass = !fail && pass;
1090 
1091 		std::cout << (fail ? "FAILED   " : "passed   ") << "Hash_DRBG SHA1/128/440 (C0UNT=0, E=16, N=8, A=0, P=16)\n";
1092 	}
1093 
1094 	{
1095 		// [SHA-1], [PredictionResistance = False], [EntropyInputLen = 128], [NonceLen = 64]
1096 		// [PersonalizationStringLen = 128], [AdditionalInputLen = 0], [ReturnedBitsLen = 640]
1097 		const byte entropy1[] = "\x8f\x2a\x33\x9f\x5f\x45\x21\x30\xa4\x57\xa9\x6f\xcb\xe2\xe6\x36";
1098 		const byte entropy2[] = "\x1f\xff\x9e\x4f\x4d\x66\x3a\x1f\x9e\x85\x4a\x15\x7d\xad\x97\xe0";
1099 		const byte nonce[] = "\x0e\xd0\xe9\xa5\xa4\x54\x8a\xd0";
1100 		const byte personalization[] = "\x45\xe4\xb3\xe2\x63\x87\x62\x57\x2c\x99\xe4\x03\x45\xd6\x32\x6f";
1101 
1102 		Hash_DRBG<SHA1, 128/8, 440/8> drbg(entropy1, 16, nonce, 8, personalization, 16);
1103 		drbg.IncorporateEntropy(entropy2, 16);
1104 
1105 		SecByteBlock result(80);
1106 		drbg.GenerateBlock(result, result.size());
1107 		drbg.GenerateBlock(result, result.size());
1108 
1109 		const byte expected[] = "\x4F\xE8\x96\x41\xF8\xD3\x95\xC4\x43\x6E\xFB\xF8\x05\x75\xA7\x69\x74\x6E\x0C\x5F"
1110 			"\x54\x14\x35\xB4\xE6\xA6\xB3\x40\x7C\xA2\xC4\x42\xA2\x2F\x66\x28\x28\xCF\x4A\xA8"
1111 			"\xDC\x16\xBC\x5F\x69\xE5\xBB\x05\xD1\x43\x8F\x80\xAB\xC5\x8F\x9C\x3F\x75\x57\xEB"
1112 			"\x44\x0D\xF5\x0C\xF4\x95\x23\x94\x67\x11\x55\x98\x14\x43\xFF\x13\x14\x85\x5A\xBC";
1113 
1114 		fail = !!memcmp(result, expected, 640/8);
1115 		pass = !fail && pass;
1116 
1117 		std::cout << (fail ? "FAILED   " : "passed   ") << "Hash_DRBG SHA1/128/440 (C0UNT=1, E=16, N=8, A=0, P=16)\n";
1118 	}
1119 
1120 	{
1121 		// [SHA-1], [PredictionResistance = False], [EntropyInputLen = 128], [NonceLen = 64]
1122 		// [PersonalizationStringLen = 128], [AdditionalInputLen = 16], [ReturnedBitsLen = 640]
1123 		const byte entropy1[] = "\x48\xa1\xa9\x7c\xcc\x49\xd7\xcc\xf6\xe3\x78\xa2\xf1\x6b\x0f\xcd";
1124 		const byte entropy2[] = "\xba\x5d\xa6\x79\x12\x37\x24\x3f\xea\x60\x50\xf5\xb9\x9e\xcd\xf5";
1125 		const byte nonce[] = "\xb0\x91\xd2\xec\x12\xa8\x39\xfe";
1126 		const byte personalization[] = "\x3d\xc1\x6c\x1a\xdd\x9c\xac\x4e\xbb\xb0\xb8\x89\xe4\x3b\x9e\x12";
1127 		const byte additional1[] = "\xd1\x23\xe3\x8e\x4c\x97\xe8\x29\x94\xa9\x71\x7a\xc6\xf1\x7c\x08";
1128 		const byte additional2[] = "\x80\x0b\xed\x97\x29\xcf\xad\xe6\x68\x0d\xfe\x53\xba\x0c\x1e\x28";
1129 		const byte additional3[] = "\x25\x1e\x66\xb9\xe3\x85\xac\x1c\x17\xfb\x77\x1b\x5d\xc7\x6c\xf2";
1130 
1131 		Hash_DRBG<SHA1, 128/8, 440/8> drbg(entropy1, 16, nonce, 8, personalization, 16);
1132 		drbg.IncorporateEntropy(entropy2, 16, additional1, 16);
1133 
1134 		SecByteBlock result(80);
1135 		drbg.GenerateBlock(additional2, 16, result, result.size());
1136 		drbg.GenerateBlock(additional3, 16, result, result.size());
1137 
1138 		const byte expected[] = "\xA1\xB2\xEE\x86\xA0\xF1\xDA\xB7\x93\x83\x13\x3A\x62\x27\x99\x08\x95\x3A\x1C\x9A"
1139 			"\x98\x77\x60\x12\x11\x19\xCC\x78\xB8\x51\x2B\xD5\x37\xA1\x9D\xB9\x73\xCA\x39\x7A"
1140 			"\xDD\x92\x33\x78\x6D\x5D\x41\xFF\xFA\xE9\x80\x59\x04\x85\x21\xE2\x52\x84\xBC\x6F"
1141 			"\xDB\x97\xF3\x4E\x6A\x12\x7A\xCD\x41\x0F\x50\x68\x28\x46\xBE\x56\x9E\x9A\x6B\xC8";
1142 
1143 		fail = !!memcmp(result, expected, 640/8);
1144 		pass = !fail && pass;
1145 
1146 		std::cout << (fail ? "FAILED   " : "passed   ") << "Hash_DRBG SHA1/128/440 (C0UNT=0, E=16, N=8, A=16, P=16)\n";
1147 	}
1148 
1149 	{
1150 		// [SHA-1], [PredictionResistance = False], [EntropyInputLen = 128], [NonceLen = 64]
1151 		// [PersonalizationStringLen = 128], [AdditionalInputLen = 16], [ReturnedBitsLen = 640]
1152 		const byte entropy1[] = "\x3b\xcb\xa8\x3b\x6d\xfb\x06\x79\x80\xef\xc3\x1e\xd2\x9e\x68\x57";
1153 		const byte entropy2[] = "\x2f\xc9\x87\x49\x19\xcb\x52\x4a\x5b\xac\xf0\xcd\x96\x4e\xf8\x6e";
1154 		const byte nonce[] = "\x23\xfe\x20\x9f\xac\x70\x45\xde";
1155 		const byte personalization[] = "\xf2\x25\xf4\xd9\x6b\x9c\xab\x49\x1e\xab\x18\x14\xb2\x5e\x78\xef";
1156 		const byte additional1[] = "\x57\x5b\x9a\x11\x32\x7a\xab\x89\x08\xfe\x46\x11\x9a\xed\x14\x5d";
1157 		const byte additional2[] = "\x5d\x19\xcd\xed\xb7\xe3\x44\x66\x8e\x11\x42\x96\xa0\x38\xb1\x7f";
1158 		const byte additional3[] = "\x2b\xaf\xa0\x15\xed\xdd\x5c\x76\x32\x75\x34\x35\xd1\x37\x72\xfb";
1159 
1160 		Hash_DRBG<SHA1, 128/8, 440/8> drbg(entropy1, 16, nonce, 8, personalization, 16);
1161 		drbg.IncorporateEntropy(entropy2, 16, additional1, 16);
1162 
1163 		SecByteBlock result(80);
1164 		drbg.GenerateBlock(additional2, 16, result, result.size());
1165 		drbg.GenerateBlock(additional3, 16, result, result.size());
1166 
1167 		const byte expected[] = "\x1D\x12\xEB\x6D\x42\x60\xBD\xFB\xA7\x99\xB8\x53\xCC\x6F\x19\xB1\x64\xFE\x2F\x55"
1168 			"\xBA\xA2\x1C\x89\xD4\xD0\xE9\xB4\xBA\xD4\xE5\xF8\xC5\x30\x06\x41\xBA\xC4\x3D\x2B"
1169 			"\x73\x91\x27\xE9\x31\xC0\x55\x55\x11\xE8\xB6\x57\x02\x0D\xCE\x90\xAC\x31\xB9\x00"
1170 			"\x31\xC1\xD4\x4F\xE7\x12\x3B\xCC\x85\x16\x2F\x12\x8F\xB2\xDF\x84\x4E\xF7\x06\xBE";
1171 
1172 		fail = !!memcmp(result, expected, 640/8);
1173 		pass = !fail && pass;
1174 
1175 		std::cout << (fail ? "FAILED   " : "passed   ") << "Hash_DRBG SHA1/128/440 (C0UNT=1, E=16, N=8, A=16, P=16)\n";
1176 	}
1177 
1178 	{
1179 		// [SHA-256], [PredictionResistance = False], [EntropyInputLen = 256], [NonceLen = 128]
1180 		// [PersonalizationStringLen = 256], [AdditionalInputLen = 256], [ReturnedBitsLen = 1024]
1181 		const byte entropy1[] = "\xf0\x5b\xab\x56\xc7\xac\x6e\xeb\x31\xa0\xcf\x8a\x8a\x06\x2a\x49\x17\x9a\xcf\x3c\x5b\x20\x4d\x60\xdd\x7a\x3e\xb7\x8f\x5d\x8e\x3b";
1182 		const byte entropy2[] = "\x72\xd4\x02\xa2\x59\x7b\x98\xa3\xb8\xf5\x0b\x71\x6c\x63\xc6\xdb\xa7\x3a\x07\xe6\x54\x89\x06\x3f\x02\xc5\x32\xf5\xda\xc4\xd4\x18";
1183 		const byte nonce[] = "\xa1\x45\x08\x53\x41\x68\xb6\x88\xf0\x5f\x1e\x41\x9c\x88\xcc\x30";
1184 		const byte personalization[] = "\xa0\x34\x72\xf4\x04\x59\xe2\x87\xea\xcb\x21\x32\xc0\xb6\x54\x02\x7d\xa3\xe6\x69\x25\xb4\x21\x25\x54\xc4\x48\x18\x8c\x0e\x86\x01";
1185 		const byte additional1[] = "\xb3\x0d\x28\xaf\xa4\x11\x6b\xbc\x13\x6e\x65\x09\xb5\x82\xa6\x93\xbc\x91\x71\x40\x46\xaa\x3c\x66\xb6\x77\xb3\xef\xf9\xad\xfd\x49";
1186 		const byte additional2[] = "\x77\xfd\x1d\x68\xd6\xa4\xdd\xd5\xf3\x27\x25\x2d\x3f\x6b\xdf\xee\x8c\x35\xce\xd3\x83\xbe\xaf\xc9\x32\x77\xef\xf2\x1b\x6f\xf4\x1b";
1187 		const byte additional3[] = "\x59\xa0\x1f\xf8\x6a\x58\x72\x1e\x85\xd2\xf8\x3f\x73\x99\xf1\x96\x4e\x27\xf8\x7f\xcd\x1b\xf5\xc1\xeb\xf3\x37\x10\x9b\x13\xbd\x24";
1188 
1189 		Hash_DRBG<SHA256, 128/8, 440/8> drbg(entropy1, 32, nonce, 16, personalization, 32);
1190 		drbg.IncorporateEntropy(entropy2, 32, additional1, 32);
1191 
1192 		SecByteBlock result(128);
1193 		drbg.GenerateBlock(additional2, 32, result, result.size());
1194 		drbg.GenerateBlock(additional3, 32, result, result.size());
1195 
1196 		const byte expected[] = "\xFF\x27\x96\x38\x5C\x32\xBF\x84\x3D\xFA\xBB\xF0\x3E\x70\x5A\x39\xCB\xA3\x4C\xF1"
1197 			"\x4F\xAE\xC3\x05\x63\xDF\x5A\xDD\xBD\x2D\x35\x83\xF5\x7E\x05\xF9\x40\x30\x56\x18"
1198 			"\xF2\x00\x88\x14\x03\xC2\xD9\x81\x36\x39\xE6\x67\x55\xDC\xFC\x4E\x88\xEA\x71\xDD"
1199 			"\xB2\x25\x2E\x09\x91\x49\x40\xEB\xE2\x3D\x63\x44\xA0\xF4\xDB\x5E\xE8\x39\xE6\x70"
1200 			"\xEC\x47\x24\x3F\xA0\xFC\xF5\x13\x61\xCE\x53\x98\xAA\xBF\xB4\x19\x1B\xFE\xD5\x00"
1201 			"\xE1\x03\x3A\x76\x54\xFF\xD7\x24\x70\x5E\x8C\xB2\x41\x7D\x92\x0A\x2F\x4F\x27\xB8"
1202 			"\x45\x13\x7F\xFB\x87\x90\xA9\x49";
1203 
1204 		fail = !!memcmp(result, expected, 1024/8);
1205 		pass = !fail && pass;
1206 
1207 		std::cout << (fail ? "FAILED   " : "passed   ") << "Hash_DRBG SHA256/128/440 (C0UNT=0, E=32, N=16, A=32, P=32)\n";
1208 	}
1209 
1210 	{
1211 		// [SHA-256], [PredictionResistance = False], [EntropyInputLen = 256], [NonceLen = 128]
1212 		// [PersonalizationStringLen = 256], [AdditionalInputLen = 256], [ReturnedBitsLen = 1024]
1213 		const byte entropy1[] = "\xfe\x61\x50\x79\xf1\xad\x2a\x71\xea\x7f\x0f\x5a\x14\x34\xee\xc8\x46\x35\x54\x4a\x95\x6a\x4f\xbd\x64\xff\xba\xf6\x1d\x34\x61\x83";
1214 		const byte entropy2[] = "\x18\x89\x7b\xd8\x3e\xff\x38\xab\xb5\x6e\x82\xa8\x1b\x8c\x5e\x59\x3c\x3d\x85\x62\x2a\xe2\x88\xe5\xb2\xc6\xc5\xd2\xad\x7d\xc9\x45";
1215 		const byte nonce[] = "\x9d\xa7\x87\x56\xb7\x49\x17\x02\x4c\xd2\x00\x65\x11\x9b\xe8\x7e";
1216 		const byte personalization[] = "\x77\x5d\xbf\x32\xf3\x5c\xf3\x51\xf4\xb8\x1c\xd3\xfa\x7f\x65\x0b\xcf\x31\x88\xa1\x25\x57\x0c\xdd\xac\xaa\xfe\xa1\x7b\x3b\x29\xbc";
1217 		const byte additional1[] = "\xef\x96\xc7\x9c\xb1\x73\x1d\x82\x85\x0a\x6b\xca\x9b\x5c\x34\x39\xba\xd3\x4e\x4d\x82\x6f\x35\x9f\x61\x5c\xf6\xf2\xa3\x3e\x91\x05";
1218 		const byte additional2[] = "\xaf\x25\xc4\x6e\x21\xfc\xc3\xaf\x1f\xbb\xf8\x76\xb4\x57\xab\x1a\x94\x0a\x85\x16\x47\x81\xa4\xab\xda\xc8\xab\xca\xd0\x84\xda\xae";
1219 		const byte additional3[] = "\x59\x5b\x44\x94\x38\x86\x36\xff\x8e\x45\x1a\x0c\x42\xc8\xcc\x21\x06\x38\x3a\xc5\xa6\x30\x96\xb9\x14\x81\xb3\xa1\x2b\xc8\xcd\xf6";
1220 
1221 		Hash_DRBG<SHA256, 128/8, 440/8> drbg(entropy1, 32, nonce, 16, personalization, 32);
1222 		drbg.IncorporateEntropy(entropy2, 32, additional1, 32);
1223 
1224 		SecByteBlock result(128);
1225 		drbg.GenerateBlock(additional2, 32, result, result.size());
1226 		drbg.GenerateBlock(additional3, 32, result, result.size());
1227 
1228 		const byte expected[] = "\x8B\x1C\x9C\x76\xC4\x9B\x3B\xAE\xFD\x6E\xEB\x6C\xFF\xA3\xA1\x03\x3A\x8C\xAF\x09"
1229 			"\xFE\xBD\x44\x00\xFC\x0F\xD3\xA8\x26\x9C\xEE\x01\xAC\xE3\x73\x0E\xBE\xDA\x9A\xC6"
1230 			"\x23\x44\x6D\xA1\x56\x94\x29\xEC\x4B\xCD\x01\x84\x32\x25\xEF\x00\x91\x0B\xCC\xF3"
1231 			"\x06\x3B\x80\xF5\x46\xAC\xD2\xED\x5F\x70\x2B\x56\x2F\x21\x0A\xE9\x80\x87\x38\xAD"
1232 			"\xB0\x2A\xEB\x27\xF2\xD9\x20\x2A\x66\x0E\xF5\xC9\x20\x4A\xB4\x3C\xCE\xD6\x24\x97"
1233 			"\xDB\xB1\xED\x94\x12\x6A\x2F\x03\x98\x4A\xD4\xD1\x72\xF3\x7A\x66\x74\x7E\x2A\x5B"
1234 			"\xDE\xEF\x43\xBC\xB9\x8C\x49\x01";
1235 
1236 		fail = !!memcmp(result, expected, 1024/8);
1237 		pass = !fail && pass;
1238 
1239 		std::cout << (fail ? "FAILED   " : "passed   ") << "Hash_DRBG SHA256/128/440 (C0UNT=1, E=32, N=16, A=32, P=32)\n";
1240 	}
1241 
1242 	{
1243 		// [SHA-512], [PredictionResistance = False], [EntropyInputLen = 256], [NonceLen = 128]
1244 		// [PersonalizationStringLen = 256], [AdditionalInputLen = 256], [ReturnedBitsLen = 2048]
1245 		const byte entropy1[] = "\x55\x4e\x8f\xfd\xc4\x9a\xd8\xf9\x9a\xe5\xd5\xf8\x1a\xf5\xda\xfb\x7f\x75\x53\xd7\xcb\x56\x8e\xa7\x3c\xc0\x82\xdd\x80\x76\x25\xc0";
1246 		const byte entropy2[] = "\x78\x07\x3e\x86\x79\x4b\x10\x95\x88\xf4\x22\xf9\xbd\x04\x7e\xc0\xce\xab\xd6\x78\x6b\xdf\xe2\x89\xb3\x16\x43\x9c\x32\x2d\xb2\x59";
1247 		const byte nonce[] = "\xf0\x89\x78\xde\x2d\xc2\xcd\xd9\xc0\xfd\x3d\x84\xd9\x8b\x8e\x8e";
1248 		const byte personalization[] = "\x3e\x52\x7a\xb5\x81\x2b\x0c\x0e\x98\x2a\x95\x78\x93\x98\xd9\xeb\xf1\xb9\xeb\xd6\x1d\x02\x05\xed\x42\x21\x2d\x24\xb8\x37\xf8\x41";
1249 		const byte additional1[] = "\xf2\x6b\xb1\xef\x30\xca\x8f\x97\xc0\x19\xd0\x79\xe5\xc6\x5e\xae\xd1\xa3\x9a\x52\xaf\x12\xe8\x28\xde\x03\x70\x79\x9a\x70\x11\x8b";
1250 		const byte additional2[] = "\xb0\x9d\xb5\xa8\x45\xec\x79\x7a\x4b\x60\x7e\xe4\xd5\x58\x56\x70\x35\x20\x9b\xd8\xe5\x01\x6c\x78\xff\x1f\x6b\x93\xbf\x7c\x34\xca";
1251 		const byte additional3[] = "\x45\x92\x2f\xb3\x5a\xd0\x6a\x84\x5f\xc9\xca\x16\x4a\x42\xbb\x59\x84\xb4\x38\x57\xa9\x16\x23\x48\xf0\x2f\x51\x61\x24\x35\xb8\x62";
1252 
1253 		Hash_DRBG<SHA512, 256/8, 888/8> drbg(entropy1, 32, nonce, 16, personalization, 32);
1254 		drbg.IncorporateEntropy(entropy2, 32, additional1, 32);
1255 
1256 		SecByteBlock result(256);
1257 		drbg.GenerateBlock(additional2, 32, result, result.size());
1258 		drbg.GenerateBlock(additional3, 32, result, result.size());
1259 
1260 		const byte expected[] = "\x1F\x20\x83\x9E\x22\x55\x3B\x1E\x6C\xD4\xF6\x3A\x47\xC3\x99\x54\x0F\x69\xA3\xBB"
1261 			"\x37\x47\xA0\x2A\x12\xAC\xC7\x00\x85\xC5\xCC\xF4\x7B\x12\x5A\x4A\xEA\xED\x2F\xE5"
1262 			"\x31\x51\x0D\xC1\x8E\x50\x29\xE2\xA6\xCB\x8F\x34\xBA\xDA\x8B\x47\x32\x33\x81\xF1"
1263 			"\x2D\xF6\x8B\x73\x8C\xFF\x15\xC8\x8E\x8C\x31\x48\xFA\xC3\xC4\x9F\x52\x81\x23\xC2"
1264 			"\x2A\x83\xBD\xF1\x44\xEF\x15\x49\x93\x44\x83\x6B\x37\x5D\xBB\xFF\x72\xD2\x86\x96"
1265 			"\x62\xF8\x4D\x12\x3B\x16\xCB\xAC\xA1\x00\x12\x1F\x94\xA8\xD5\xAE\x9A\x9E\xDA\xC8"
1266 			"\xD7\x6D\x59\x33\xFD\x55\xC9\xCC\x5B\xAD\x39\x73\xB5\x13\x8B\x96\xDF\xDB\xF5\x90"
1267 			"\x81\xDF\x68\x6A\x30\x72\x42\xF2\x74\xAE\x7F\x1F\x7F\xFE\x8B\x3D\x49\x38\x98\x34"
1268 			"\x7C\x63\x46\x6E\xAF\xFA\xCB\x06\x06\x08\xE6\xC8\x35\x3C\x68\xB8\xCC\x9D\x5C\xDF"
1269 			"\xDB\xC0\x41\x44\x48\xE6\x11\xD4\x78\x50\x81\x91\xED\x1D\x75\xF3\xBD\x79\xFF\x1E"
1270 			"\x37\xAF\xC6\x5D\x49\xD6\x5C\xAC\x5B\xCB\xD6\x91\x37\x51\xFA\x98\x70\xFC\x32\xB3"
1271 			"\xF2\x86\xE4\xED\x74\xF2\x5D\x8B\x6C\x4D\xB8\xDE\xD8\x4A\xD6\x5E\xD6\x6D\xAE\xB1"
1272 			"\x1B\xA2\x94\x52\x54\xAD\x3C\x3D\x25\xBD\x12\x46\x3C\xA0\x45\x9D";
1273 
1274 		fail = !!memcmp(result, expected, 2048/8);
1275 		pass = !fail && pass;
1276 
1277 		std::cout << (fail ? "FAILED   " : "passed   ") << "Hash_DRBG SHA512/256/888 (C0UNT=0, E=32, N=16, A=32, P=32)\n";
1278 	}
1279 
1280 	{
1281 		// [SHA-512], [PredictionResistance = False], [EntropyInputLen = 256], [NonceLen = 128]
1282 		// [PersonalizationStringLen = 256], [AdditionalInputLen = 256], [ReturnedBitsLen = 2048]
1283 		const byte entropy1[] = "\x0c\x9f\xcd\x06\x21\x3c\xb2\xf6\x3c\xdf\x79\x76\x4b\x46\x74\xfc\xdf\x68\xb0\xff\xae\xc7\x21\x8a\xa2\xaf\x4e\x4c\xb9\xe6\x60\x78";
1284 		const byte entropy2[] = "\x75\xb8\x49\x54\xdf\x30\x10\x16\x2c\x06\x8c\x12\xeb\x6c\x1d\x03\x64\x5c\xad\x10\x5c\xc3\x17\x69\xb2\x5a\xc1\x7c\xb8\x33\x5b\x45";
1285 		const byte nonce[] = "\x43\x1c\x4d\x65\x93\x96\xad\xdc\xc1\x6d\x17\x9f\x7f\x57\x24\x4d";
1286 		const byte personalization[] = "\x7e\x54\xbd\x87\xd2\x0a\x95\xd7\xc4\x0c\x3b\x1b\x32\x15\x26\xd2\x06\x67\xa4\xac\xc1\xaa\xfb\x55\x91\x68\x2c\xb5\xc9\xcd\x66\x05";
1287 		const byte additional1[] = "\xd5\x74\x9e\x56\xfb\x5f\xf3\xf8\x2c\x73\x2b\x7a\x83\xe0\xde\x06\x85\x0b\xf0\x57\x50\xc8\x55\x60\x4a\x41\x4f\x86\xb1\x68\x14\x03";
1288 		const byte additional2[] = "\x9a\x83\xbb\x06\xdf\x4d\x53\x89\xf5\x3f\x24\xff\xf7\xcd\x0c\xcf\x4f\xbe\x46\x79\x8e\xce\x82\xa8\xc4\x6b\x5f\x8e\x58\x32\x62\x23";
1289 		const byte additional3[] = "\x48\x13\xc4\x95\x10\x99\xdd\x7f\xd4\x77\x3c\x9b\x8a\xa4\x1c\x3d\xb0\x93\x92\x50\xba\x23\x98\xef\x4b\x1b\xd2\x53\xc1\x61\xda\xc6";
1290 
1291 		Hash_DRBG<SHA512, 256/8, 888/8> drbg(entropy1, 32, nonce, 16, personalization, 32);
1292 		drbg.IncorporateEntropy(entropy2, 32, additional1, 32);
1293 
1294 		SecByteBlock result(256);
1295 		drbg.GenerateBlock(additional2, 32, result, result.size());
1296 		drbg.GenerateBlock(additional3, 32, result, result.size());
1297 
1298 		const byte expected[] = "\xE1\x7E\x4B\xEE\xD1\x65\x4F\xB2\xFC\xC8\xE8\xD7\xC6\x72\x7D\xD2\xE3\x15\x73\xC0"
1299 			"\x23\xC8\x55\x5D\x2B\xD8\x28\xD8\x31\xE4\xC9\x87\x42\x51\x87\x66\x43\x1F\x2C\xA4"
1300 			"\x73\xED\x4E\x50\x12\xC4\x50\x0E\x4C\xDD\x14\x73\xA2\xFB\xB3\x07\x0C\x66\x97\x4D"
1301 			"\x89\xDE\x35\x1C\x93\xE7\xE6\x8F\x20\x3D\x84\xE6\x73\x46\x0F\x7C\xF4\x3B\x6C\x02"
1302 			"\x23\x7C\x79\x6C\x86\xD9\x48\x80\x9C\x34\xCB\xA1\x23\xE7\xF7\x8A\x2E\x4B\x9D\x39"
1303 			"\xA5\x86\x1A\x73\x58\x28\x5A\x1D\x8D\x4A\xBD\x42\xD5\x49\x2B\xDF\x53\x1D\xE7\x4A"
1304 			"\x5F\x74\x09\x7F\xDC\x29\x7D\x58\x9C\x4B\xC5\x2F\x3B\x8F\xBF\x56\xCA\x48\x0A\x74"
1305 			"\xAE\xFF\xDD\x12\xE4\xF6\xAB\x83\x26\x4F\x52\x8A\x19\xBB\x91\x32\xA4\x42\xEC\x4F"
1306 			"\x3C\x76\xED\x9F\x03\xAA\x5E\x53\x79\x4C\xD0\x06\xD2\x1A\x42\x9D\xB1\xA7\xEC\xF7"
1307 			"\x5B\xD4\x03\x70\x1E\xF2\x47\x26\x48\xAC\x35\xEE\xD0\x58\x40\x94\x8C\x11\xD0\xEB"
1308 			"\x77\x39\x5A\xA3\xD5\xD0\xD3\xC3\x68\xE1\x75\xAA\xC0\x44\xEA\xD8\xDD\x13\x3F\xF9"
1309 			"\x7D\x21\x14\x34\xA5\x87\x43\xA4\x0A\x96\x77\x00\xCC\xCA\xB1\xDA\xC4\x39\xE0\x66"
1310 			"\x37\x05\x6E\xAC\xF2\xE6\xC6\xC5\x4F\x79\xD3\xE5\x6A\x3D\x36\x3F";
1311 
1312 		fail = !!memcmp(result, expected, 2048/8);
1313 		pass = !fail && pass;
1314 
1315 		std::cout << (fail ? "FAILED   " : "passed   ") << "Hash_DRBG SHA512/256/888 (C0UNT=1, E=32, N=16, A=32, P=32)\n";
1316 	}
1317 
1318 	return pass;
1319 }
1320 
1321 NAMESPACE_END  // Test
1322 NAMESPACE_END  // CryptoPP
1323