aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/utils
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2016-10-30 23:39:21 -0400
committerJack Lloyd <[email protected]>2016-10-30 23:39:21 -0400
commit6582fe8638ab6c37551691a6a0196b22977a6e2e (patch)
tree152f0e76e76349f916b17c900bb7b39b5fcecb8f /src/lib/utils
parent76a0cff3b0200660ef678bbdaf3762e45c27bccd (diff)
Import fuzzer drivers
Originally from https://github.com/randombit/botan-fuzzers but merging to the main tree (without the corpus files, since I suspect the corpus files in that repo are not useful anymore) Adds --unsafe-fuzzer-mode which can be used to selectively disable cryptographic checks which get in the way of fuzzer testing. This setting is reflected in build.h and in the version string. Right now it doesn't actually disable anything.
Diffstat (limited to 'src/lib/utils')
-rw-r--r--src/lib/utils/version.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/utils/version.cpp b/src/lib/utils/version.cpp
index 8e14cc62f..16ac3a18d 100644
--- a/src/lib/utils/version.cpp
+++ b/src/lib/utils/version.cpp
@@ -38,6 +38,9 @@ const char* version_cstr()
return "Botan " STR(BOTAN_VERSION_MAJOR) "."
STR(BOTAN_VERSION_MINOR) "."
STR(BOTAN_VERSION_PATCH) " ("
+if defined(BOTAN_UNSAFE_FUZZER_MODE)
+ "UNSAFE FUZZER MODE BUILD"
+#endif
BOTAN_VERSION_RELEASE_TYPE
#if (BOTAN_VERSION_DATESTAMP != 0)
", dated " STR(BOTAN_VERSION_DATESTAMP)