aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/utils/block_input.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'utils/block_input.hpp')
-rw-r--r--utils/block_input.hpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/utils/block_input.hpp b/utils/block_input.hpp
deleted file mode 100644
index f629062..0000000
--- a/utils/block_input.hpp
+++ /dev/null
@@ -1,29 +0,0 @@
-// 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 <string>
-#include <utility>
-#include <vector>
-
-class Input
-{
-public:
- Input(const std::string& key, const std::string& iv, std::vector<std::string>&& blocks)
- : key{key}
- , iv{iv}
- , blocks{std::move(blocks)}
- { }
-
- Input(const std::string& key, std::vector<std::string>&& blocks)
- : key{key}
- , blocks{std::move(blocks)}
- { }
-
- const std::string key;
- const std::string iv;
- const std::vector<std::string> blocks;
-};