summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>2018-09-12 00:37:15 +0200
committerDr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>2018-09-12 23:36:18 +0200
commitc402e943cd0d748ca2a74a37caeccdfc59ce2870 (patch)
treebdd3d563192ec5d24b2c6db5be61dbb9ed96af2d /include
parent6839a7a7f4973a3fc2f87b12664c26d524bef1f4 (diff)
Replace the public RAND_DRBG_USED_FLAGS #define by an internal constant
The new DRBG API added the aforementioned #define. However, it is used internally only and having it defined publicly does not serve any purpose except causing potential version compatibility problems. Fixes #7182 Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/7190)
Diffstat (limited to 'include')
-rw-r--r--include/openssl/rand_drbg.h15
1 files changed, 11 insertions, 4 deletions
diff --git a/include/openssl/rand_drbg.h b/include/openssl/rand_drbg.h
index 282356e161..cfc7fb7e99 100644
--- a/include/openssl/rand_drbg.h
+++ b/include/openssl/rand_drbg.h
@@ -13,14 +13,21 @@
# include <time.h>
# include <openssl/ossl_typ.h>
+/*
+ * RAND_DRBG flags
+ *
+ * Note: if new flags are added, the constant `rand_drbg_used_flags`
+ * in drbg_lib.c needs to be updated accordingly.
+ */
/* In CTR mode, disable derivation function ctr_df */
# define RAND_DRBG_FLAG_CTR_NO_DF 0x1
-/* A logical OR of all used flag bits (currently there is only one) */
-# define RAND_DRBG_USED_FLAGS ( \
- RAND_DRBG_FLAG_CTR_NO_DF \
- )
+
+# if OPENSSL_API_COMPAT < 0x10200000L
+/* This #define was replaced by an internal constant and should not be used. */
+# define RAND_DRBG_USED_FLAGS (RAND_DRBG_FLAG_CTR_NO_DF)
+# endif
/*
* Default security strength (in the sense of [NIST SP 800-90Ar1])