From 1be5109d775697065d234a70b948de52e55efbd6 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Thu, 25 Jun 2015 01:10:53 +0300 Subject: cxx: implement more stuff --- cxx/include/aesnixx/algorithm.hpp | 16 ++++++++++++++++ cxx/include/aesnixx/all.hpp | 2 ++ cxx/include/aesnixx/mode.hpp | 16 ++++++++++++++++ 3 files changed, 34 insertions(+) create mode 100644 cxx/include/aesnixx/algorithm.hpp create mode 100644 cxx/include/aesnixx/mode.hpp (limited to 'cxx/include') diff --git a/cxx/include/aesnixx/algorithm.hpp b/cxx/include/aesnixx/algorithm.hpp new file mode 100644 index 0000000..85d2fc4 --- /dev/null +++ b/cxx/include/aesnixx/algorithm.hpp @@ -0,0 +1,16 @@ +/** + * \file + * \author Egor Tensin + * \date 2015 + * \copyright This file is licensed under the terms of the MIT License. + * See LICENSE.txt for details. + */ + +#pragma once + +#include + +namespace aesni +{ + typedef AesNI_Algorithm Algorithm; +} diff --git a/cxx/include/aesnixx/all.hpp b/cxx/include/aesnixx/all.hpp index 1452f68..2bdf301 100644 --- a/cxx/include/aesnixx/all.hpp +++ b/cxx/include/aesnixx/all.hpp @@ -9,6 +9,8 @@ #pragma once #include "aes.hpp" +#include "algorithm.hpp" #include "data.hpp" #include "debug.hpp" #include "error.hpp" +#include "mode.hpp" diff --git a/cxx/include/aesnixx/mode.hpp b/cxx/include/aesnixx/mode.hpp new file mode 100644 index 0000000..ec26170 --- /dev/null +++ b/cxx/include/aesnixx/mode.hpp @@ -0,0 +1,16 @@ +/** + * \file + * \author Egor Tensin + * \date 2015 + * \copyright This file is licensed under the terms of the MIT License. + * See LICENSE.txt for details. + */ + +#pragma once + +#include + +namespace aesni +{ + typedef AesNI_Mode Mode; +} -- cgit v1.2.3