From 73d14c711ba2d5174210d243d385c8236be1300a Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Wed, 17 Jun 2015 05:32:36 +0300 Subject: add "boxes" as a uniform encryption interface CTR is not yet supported. --- include/aesni/algorithm.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 include/aesni/algorithm.h (limited to 'include/aesni/algorithm.h') diff --git a/include/aesni/algorithm.h b/include/aesni/algorithm.h new file mode 100644 index 0000000..8aacfdc --- /dev/null +++ b/include/aesni/algorithm.h @@ -0,0 +1,17 @@ +/** + * \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 + +typedef enum +{ + AESNI_AES128, + AESNI_AES192, + AESNI_AES256, +} +AesNI_Algorithm; -- cgit v1.2.3