summaryrefslogtreecommitdiffstats
path: root/crypto/rand
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2004-08-10 09:09:08 +0000
committerRichard Levitte <levitte@openssl.org>2004-08-10 09:09:08 +0000
commit10334496133b5c8b4c0ebb3a901cda30fa54b8cd (patch)
tree9c785b22ffe780813c4506d4c8f08767e5afdcb5 /crypto/rand
parentf992081682d6e3334b4e831072be199557a4518b (diff)
make update
Diffstat (limited to 'crypto/rand')
-rw-r--r--crypto/rand/rand.h1
-rw-r--r--crypto/rand/rand_err.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/crypto/rand/rand.h b/crypto/rand/rand.h
index cb30eed1cd..604df9be6c 100644
--- a/crypto/rand/rand.h
+++ b/crypto/rand/rand.h
@@ -131,6 +131,7 @@ void ERR_load_RAND_strings(void);
/* Reason codes. */
#define RAND_R_NON_FIPS_METHOD 101
+#define RAND_R_PRNG_ASKING_FOR_TOO_MUCH 105
#define RAND_R_PRNG_NOT_REKEYED 103
#define RAND_R_PRNG_NOT_RESEEDED 104
#define RAND_R_PRNG_NOT_SEEDED 100
diff --git a/crypto/rand/rand_err.c b/crypto/rand/rand_err.c
index 6a6ae3e9f6..95574659ac 100644
--- a/crypto/rand/rand_err.c
+++ b/crypto/rand/rand_err.c
@@ -75,6 +75,7 @@ static ERR_STRING_DATA RAND_str_functs[]=
static ERR_STRING_DATA RAND_str_reasons[]=
{
{RAND_R_NON_FIPS_METHOD ,"non fips method"},
+{RAND_R_PRNG_ASKING_FOR_TOO_MUCH ,"prng asking for too much"},
{RAND_R_PRNG_NOT_REKEYED ,"prng not rekeyed"},
{RAND_R_PRNG_NOT_RESEEDED ,"prng not reseeded"},
{RAND_R_PRNG_NOT_SEEDED ,"PRNG not seeded"},