summaryrefslogtreecommitdiffstats
path: root/crypto/rand/rand.h
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-01-26 15:33:51 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-01-26 15:33:51 +0000
commit1588a3cae72e60071f1f8a89dbd1356bc08581fc (patch)
tree87425e4d1194d73d1b7b567382a78e76645994b8 /crypto/rand/rand.h
parent7a4bd34a4f6d0c0745dd5710c0f4dba614e8dfac (diff)
add new RAND errors
Diffstat (limited to 'crypto/rand/rand.h')
-rw-r--r--crypto/rand/rand.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/crypto/rand/rand.h b/crypto/rand/rand.h
index 5895d3b6e1..7a3a79b44f 100644
--- a/crypto/rand/rand.h
+++ b/crypto/rand/rand.h
@@ -128,11 +128,21 @@ void ERR_load_RAND_strings(void);
/* Error codes for the RAND functions. */
/* Function codes. */
+#define RAND_F_FIPS_RAND 102
+#define RAND_F_FIPS_RAND_SET_DT 103
+#define RAND_F_FIPS_SET_PRNG_SEED 104
+#define RAND_F_FIPS_SET_TEST_MODE 105
#define RAND_F_RAND_GET_RAND_METHOD 101
#define RAND_F_SSLEAY_RAND_BYTES 100
/* Reason codes. */
+#define RAND_R_NOT_IN_TEST_MODE 101
+#define RAND_R_NO_KEY_SET 102
+#define RAND_R_PRNG_ERROR 103
+#define RAND_R_PRNG_KEYED 104
#define RAND_R_PRNG_NOT_SEEDED 100
+#define RAND_R_PRNG_SEED_MUST_NOT_MATCH_KEY 105
+#define RAND_R_PRNG_STUCK 106
#ifdef __cplusplus
}