aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/aes/padding.h
blob: 7f0db65f54829d321bd92ff8e3845cb84a39f143 (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
40
41
/**
 * \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.
 */

#pragma once

#include "error.h"

#include <stdlib.h>

#ifdef __cplusplus
extern "C"
{
#endif

typedef enum
{
    AES_PADDING_PKCS7,
}
AES_PaddingMethod;

AES_StatusCode aes_extract_padding_size(
    AES_PaddingMethod,
    const void* src,
    size_t src_size,
    size_t* padding_size,
    AES_ErrorDetails*);

AES_StatusCode aes_fill_with_padding(
    AES_PaddingMethod,
    void* dest,
    size_t padding_size,
    AES_ErrorDetails*);

#ifdef __cplusplus
}
#endif