aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/utils/block_cmd_parser.hpp
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2015-10-20 03:11:50 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2015-10-20 03:11:50 +0300
commitf9665896e3deb6c449c764ba8b30f700abe36cd5 (patch)
tree4203b64ccf2fb8ad4d40f20edad8aeff9448ab63 /utils/block_cmd_parser.hpp
parentadd missing `assert`s (diff)
downloadaes-tools-f9665896e3deb6c449c764ba8b30f700abe36cd5.tar.gz
aes-tools-f9665896e3deb6c449c764ba8b30f700abe36cd5.zip
cxx: implement "boxes"
Diffstat (limited to 'utils/block_cmd_parser.hpp')
-rw-r--r--utils/block_cmd_parser.hpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/utils/block_cmd_parser.hpp b/utils/block_cmd_parser.hpp
index c191154..50334e7 100644
--- a/utils/block_cmd_parser.hpp
+++ b/utils/block_cmd_parser.hpp
@@ -12,6 +12,7 @@
#include <aesnixx/all.hpp>
+#include <boost/config.hpp>
#include <boost/program_options.hpp>
#include <ostream>
@@ -20,6 +21,24 @@
namespace
{
+ BOOST_NORETURN inline void throw_iv_required()
+ {
+ throw boost::program_options::error(
+ "initialization vector is required for the selected mode of operation");
+ }
+
+ BOOST_NORETURN inline void throw_not_implemented(aesni::Algorithm algorithm)
+ {
+ throw boost::program_options::error(
+ "the selected algorithm is not implemented");
+ }
+
+ BOOST_NORETURN inline void throw_not_implemented(aesni::Mode mode)
+ {
+ throw boost::program_options::error(
+ "the selected mode of operation is not implemented");
+ }
+
class CommandLineParser
{
public: