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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
// 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.
#include "file_cmd_parser.hpp"
#include "helpers/file.hpp"
#include <aesxx/all.hpp>
#include <Windows.h>
#include <boost/program_options.hpp>
#include <cstring>
#include <exception>
#include <iostream>
#include <string>
#include <vector>
namespace
{
void encrypt_bmp(
aes::Box& box,
const std::string& plaintext_path,
const std::string& ciphertext_path)
{
const auto plaintext_buf = file::read_file(plaintext_path);
const auto bmp_header = reinterpret_cast<const BITMAPFILEHEADER*>(plaintext_buf.data());
const auto header_size = bmp_header->bfOffBits;
const auto pixels = plaintext_buf.data() + header_size;
const auto pixels_size = plaintext_buf.size() - header_size;
const auto cipherpixels = box.encrypt_buffer(
pixels, pixels_size);
std::vector<unsigned char> ciphertext_buf(header_size + cipherpixels.size());
std::memcpy(ciphertext_buf.data(), bmp_header, header_size);
std::memcpy(ciphertext_buf.data() + header_size, cipherpixels.data(), cipherpixels.size());
file::write_file(ciphertext_path, ciphertext_buf);
}
void encrypt_bmp(const Settings& settings)
{
const auto algorithm = settings.get_algorithm();
const auto mode = settings.get_mode();
const auto& plaintext_path = settings.get_input_path();
const auto& ciphertext_path = settings.get_output_path();
aes::Box::Key key;
aes::Box::parse_key(key, algorithm, settings.get_key_string());
if (aes::mode_requires_initialization_vector(mode))
{
aes::Box::Block iv;
aes::Box::parse_block(iv, algorithm, settings.get_iv_string());
aes::Box box{ algorithm, key, mode, iv };
encrypt_bmp(box, plaintext_path, ciphertext_path);
}
else
{
aes::Box box{ algorithm, key };
encrypt_bmp(box, plaintext_path, ciphertext_path);
}
}
}
int main(int argc, char** argv)
{
try
{
CommandLineParser cmd_parser(argv[0]);
try
{
Settings settings;
cmd_parser.parse(settings, argc, argv);
if (cmd_parser.exit_with_usage())
{
std::cout << cmd_parser;
return 0;
}
encrypt_bmp(settings);
}
catch (const boost::program_options::error& e)
{
std::cerr << "Usage error: " << e.what() << "\n";
std::cerr << cmd_parser;
return 1;
}
catch (const aes::Error& e)
{
std::cerr << e;
return 1;
}
}
catch (const std::exception& e)
{
std::cerr << e.what() << "\n";
return 1;
}
return 0;
}
|