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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
// This file is part of the "AES tools" project.
// For details, see https://github.com/egor-tensin/aes-tools.
// Distributed under the MIT License.
#pragma once
#include "algorithm.h"
#include "box_data.h"
#include "error.h"
#include <stdlib.h>
#ifdef __cplusplus
extern "C"
{
#endif
AES_StatusCode aes_box_init(
AES_Box* box,
AES_Algorithm algorithm,
const AES_BoxKey* box_key,
AES_Mode mode,
const AES_BoxBlock* iv,
AES_ErrorDetails* err_details);
AES_StatusCode aes_box_parse_key(
AES_BoxKey* dest,
AES_Algorithm algorithm,
const char* src,
AES_ErrorDetails* err_details);
AES_StatusCode aes_box_parse_block(
AES_BoxBlock* dest,
AES_Algorithm algorithm,
const char* src,
AES_ErrorDetails* err_details);
AES_StatusCode aes_box_format_key(
AES_BoxKeyString* dest,
AES_Algorithm algorithm,
const AES_BoxKey* src,
AES_ErrorDetails* err_details);
AES_StatusCode aes_box_format_block(
AES_BoxBlockString* dest,
AES_Algorithm algorithm,
const AES_BoxBlock* src,
AES_ErrorDetails* err_details);
AES_StatusCode aes_box_encrypt_block(
AES_Box* box,
const AES_BoxBlock* plaintext,
AES_BoxBlock* ciphertext,
AES_ErrorDetails* err_details);
AES_StatusCode aes_box_decrypt_block(
AES_Box* box,
const AES_BoxBlock* ciphertext,
AES_BoxBlock* plaintext,
AES_ErrorDetails* err_details);
AES_StatusCode aes_box_encrypt_buffer(
AES_Box* box,
const void* src,
size_t src_size,
void* dest,
size_t* dest_size,
AES_ErrorDetails* err_details);
AES_StatusCode aes_box_decrypt_buffer(
AES_Box* box,
const void* src,
size_t src_size,
void* dest,
size_t* dest_size,
AES_ErrorDetails* err_details);
#ifdef __cplusplus
}
#endif
|