aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/aesni/buffer.h
blob: 6222f4fed47893059b787376132428ffe41029af (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
/**
 * \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

int aesni_encrypt_buffer_ecb128(
    const void* src,
    size_t src_size,
    void* dest,
    size_t* dest_size,
    AesNI_KeySchedule128* key_schedule,
    AesNI_ErrorDetails*);
int aesni_decrypt_buffer_ecb128(
    const void* src,
    size_t src_size,
    void* dest,
    size_t* dest_size,
    AesNI_KeySchedule128* inverted_schedule,
    AesNI_ErrorDetails*);

#ifdef __cplusplus
}
#endif