aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/utils/file_cmd_parser.hpp
blob: 6d7a962e3f830e4fa3c7ab6091e80e6669e43976 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
// This file is part of the "AES tools" project.
// For details, see https://github.com/egor-tensin/aes-tools.
// Distributed under the MIT License.

#pragma once

#include "data_parsers.hpp"
#include "helpers/command_line.hpp"

#include <aesxx/all.hpp>

#include <boost/filesystem.hpp>
#include <boost/program_options.hpp>

#include <ostream>
#include <string>
#include <utility>

namespace
{
    class FileSettings : public command_line::SettingsParser
    {
    public:
        aes::Algorithm algorithm = AES_AES128;
        aes::Mode mode = AES_ECB;

        std::string input_path;
        std::string output_path;
        std::string key;
        std::string iv;

        explicit FileSettings(const std::string& argv0)
            : SettingsParser{argv0}
        {
            visible.add_options()
                ("algorithm,a",
                    boost::program_options::value<aes::Algorithm>(&algorithm)
                        ->required()
                        ->value_name("NAME"),
                    "set algorithm")
                ("mode,m",
                    boost::program_options::value<aes::Mode>(&mode)
                        ->required()
                        ->value_name("MODE"),
                    "set mode of operation")
                ("key,k",
                    boost::program_options::value<std::string>(&key)
                        ->required()
                        ->value_name("KEY"),
                    "set encryption key")
                ("iv,v",
                    boost::program_options::value<std::string>(&iv)
                        ->value_name("BLOCK"),
                    "set initialization vector")
                ("input,i",
                    boost::program_options::value<std::string>(&input_path)
                        ->required()
                        ->value_name("PATH"),
                    "set input file path")
                ("output,o",
                    boost::program_options::value<std::string>(&output_path)
                        ->required()
                        ->value_name("PATH"),
                    "set output file path");
        }

        const char* get_short_description() const override
        {
            return "[-h|--help] [-a|--algorithm NAME] [-m|--mode MODE]"
                   " [-k|--key KEY] [-v|--iv BLOCK]"
                   " [-i|--input PATH] [-o|--output PATH]";
        }

        void parse(int argc, char** argv) override
        {
            SettingsParser::parse(argc, argv);

            if (aes::mode_requires_init_vector(mode) && iv.empty())
            {
                throw boost::program_options::error{
                    "an initialization vector is required for the selected mode of operation"};
            }
        }
    };
}