blob: d153c1bf68c999ba9fa7469ab4ecc356802f707b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/**
* \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 "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* key_schedule,
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* inverted_schedule,
AesNI_ErrorDetails* err_details);
#ifdef __cplusplus
}
#endif
|