changed RNG_REAL to RNG_TRUE

This commit is contained in:
Andreas Steffen
2009-04-29 09:13:20 +00:00
parent de92b9e70c
commit f67eebccc8
9 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -17,8 +17,8 @@
#include "rng.h"
ENUM(rng_quality_names, RNG_WEAK, RNG_REAL,
ENUM(rng_quality_names, RNG_WEAK, RNG_TRUE,
"RNG_WEAK",
"RNG_STRONG",
"RNG_REAL",
"RNG_TRUE",
);
+2 -2
View File
@@ -36,8 +36,8 @@ enum rng_quality_t {
RNG_WEAK,
/** stronger randomness, usable for session keys */
RNG_STRONG,
/** real random, key material */
RNG_REAL,
/** true random key material */
RNG_TRUE,
};
/**