diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-25 01:18:24 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-25 01:18:24 +0300 |
commit | f752dfe56b67f2729df0c54c83612ba36f8133bc (patch) | |
tree | 9d392157a1d9ae0d112260c5dedc7ec535d38291 /include/aesni/buffer.h | |
parent | cxx: implement more stuff (diff) | |
download | aes-tools-f752dfe56b67f2729df0c54c83612ba36f8133bc.tar.gz aes-tools-f752dfe56b67f2729df0c54c83612ba36f8133bc.zip |
remove specialized buffer encryption functions
Diffstat (limited to '')
-rw-r--r-- | include/aesni/buffer.h | 40 |
1 files changed, 0 insertions, 40 deletions
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 |