aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2015-06-25 01:18:24 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2015-06-25 01:18:24 +0300
commitf752dfe56b67f2729df0c54c83612ba36f8133bc (patch)
tree9d392157a1d9ae0d112260c5dedc7ec535d38291 /include
parentcxx: implement more stuff (diff)
downloadaes-tools-f752dfe56b67f2729df0c54c83612ba36f8133bc.tar.gz
aes-tools-f752dfe56b67f2729df0c54c83612ba36f8133bc.zip
remove specialized buffer encryption functions
Diffstat (limited to 'include')
-rw-r--r--include/aesni/all.h1
-rw-r--r--include/aesni/buffer.h40
2 files changed, 0 insertions, 41 deletions
diff --git a/include/aesni/all.h b/include/aesni/all.h
index 144a695..bbea6f9 100644
--- a/include/aesni/all.h
+++ b/include/aesni/all.h
@@ -20,7 +20,6 @@
#include "box.h"
#include "box_aes.h"
#include "box_data.h"
-#include "buffer.h"
#include "data.h"
#include "error.h"
#include "mode.h"
diff --git a/include/aesni/buffer.h b/include/aesni/buffer.h
deleted file mode 100644
index 3e74078..0000000
--- a/include/aesni/buffer.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/**
- * \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.
- *
- * \brief Declares variable-length buffer encryption/decryption functions.
- */
-
-#pragma once
-
-#include "aes.h"
-#include "error.h"
-
-#include <stdlib.h>
-
-#ifdef __cplusplus
-extern "C"
-{
-#endif
-
-AesNI_StatusCode aesni_encrypt_buffer_ecb128(
- const void* src,
- size_t src_size,
- void* dest,
- size_t* dest_size,
- AesNI_Aes128_RoundKeys* encryption_keys,
- AesNI_ErrorDetails* err_details);
-AesNI_StatusCode aesni_decrypt_buffer_ecb128(
- const void* src,
- size_t src_size,
- void* dest,
- size_t* dest_size,
- AesNI_Aes128_RoundKeys* decryption_keys,
- AesNI_ErrorDetails* err_details);
-
-#ifdef __cplusplus
-}
-#endif