diff options
author | lloyd <[email protected]> | 2006-07-13 15:20:17 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-07-13 15:20:17 +0000 |
commit | 3be48a22da97d908429e35340713f17535d8225b (patch) | |
tree | 40ba6c7aa0fbe40a678d414740e6ca0a035e795b /include | |
parent | 7457026a184011809dbfaf39fd45983784fda20d (diff) |
Extend the language offered by InitializerOptions a bit, so that
boolean options can be explicitly turned off.
Add support for checking the documented "fips140" argument
Diffstat (limited to 'include')
-rw-r--r-- | include/init.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/init.h b/include/init.h index 958cddda7..d98537231 100644 --- a/include/init.h +++ b/include/init.h @@ -21,11 +21,12 @@ class InitializerOptions bool use_engines() const; bool seed_rng() const; bool secure_memory() const; + bool fips_mode() const; + std::string config_file() const; InitializerOptions(const std::string&); private: - bool boolean_arg(const std::string&) const; std::map<std::string, std::string> args; }; |