aboutsummaryrefslogtreecommitdiffstats
path: root/src/cli/speed.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli/speed.cpp')
-rw-r--r--src/cli/speed.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/cli/speed.cpp b/src/cli/speed.cpp
index f42a9fe1f..db195ac48 100644
--- a/src/cli/speed.cpp
+++ b/src/cli/speed.cpp
@@ -571,6 +571,8 @@ class Summary final
std::vector<size_t> unique_buffer_sizes(const std::string& cmdline_arg)
{
+ const size_t MAX_BUF_SIZE = 64*1024*1024;
+
std::set<size_t> buf;
for(std::string size_str : Botan::split_on(cmdline_arg, ','))
{
@@ -588,8 +590,11 @@ std::vector<size_t> unique_buffer_sizes(const std::string& cmdline_arg)
throw CLI_Usage_Error("Invalid integer value '" + size_str + "' for option buf-size");
}
- if(x == 0 || x > 16*1024*1024)
- throw CLI_Usage_Error("Invalid integer value '" + size_str + "' for option buf-size");
+ if(x == 0)
+ throw CLI_Usage_Error("Cannot have a zero-sized buffer");
+
+ if(x > MAX_BUF_SIZE)
+ throw CLI_Usage_Error("Specified buffer size is too large");
buf.insert(x);
}