Updated the random.h source inline comments to clarify SHA256 and RC4.

This commit is contained in:
David Garske 2016-09-07 09:23:43 -07:00
parent 8d6ea61a4f
commit f6b786cfb5

View File

@ -48,9 +48,9 @@
/* RNG supports the following sources (in order):
* 1. CUSTOM_RAND_GENERATE_BLOCK: Defines name of function as RNG source and
* bypasses the P-RNG.
* 2. HAVE_HASHDRBG && !SHA256 (default). Uses SHA256 based P-RNG
* seeded via wc_GenerateSeed.
* 3. !HAVE_HASHDRBG && RC4 enabled. Uses RC4
* 2. HAVE_HASHDRBG && !NO_SHA256 (SHA256 enabled): Uses SHA256 based P-RNG
* seeded via wc_GenerateSeed. This is the default source.
* 3. !NO_RC4 (RC4 enabled): Uses RC4
*/
#if defined(CUSTOM_RAND_GENERATE_BLOCK)