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
|
/**
* \file
* \author Egor Tensin <Egor.Tensin@gmail.com>
* \date 2015
* \copyright This file is licensed under the terms of the MIT License.
* See LICENSE.txt for details.
*/
#pragma once
#include <aesnixx/all.hpp>
#include <boost/algorithm/string.hpp>
#include <boost/program_options.hpp>
#include <istream>
#include <string>
static std::istream& operator>>(std::istream& is, aesni::Mode& dest)
{
static const char* const argument_name = "mode";
std::string src;
is >> src;
if (boost::iequals(src, "ecb"))
dest = AESNI_ECB;
else if (boost::iequals(src, "cbc"))
dest = AESNI_CBC;
else if (boost::iequals(src, "cfb"))
dest = AESNI_CFB;
else if (boost::iequals(src, "ofb"))
dest = AESNI_OFB;
else if (boost::iequals(src, "ctr"))
dest = AESNI_CTR;
else
{
throw boost::program_options::validation_error(
boost::program_options::validation_error::invalid_option_value,
argument_name, src);
}
return is;
}
static std::istream& operator>>(std::istream& is, aesni::Algorithm& dest)
{
static const char* const argument_name = "algorithm";
std::string src;
is >> src;
if (boost::iequals(src, "aes128"))
dest = AESNI_AES128;
else if (boost::iequals(src, "aes192"))
dest = AESNI_AES192;
else if (boost::iequals(src, "aes256"))
dest = AESNI_AES256;
else
{
throw boost::program_options::validation_error(
boost::program_options::validation_error::invalid_option_value,
argument_name, src);
}
return is;
}
|