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
|
/**
* \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 "data.h"
#include "raw.h"
static __inline AesBlock128 __fastcall aes128ecb_encrypt(
AesBlock128 plain,
AesBlock128 key)
{
return raw_aes128ecb_encrypt(plain, key);
}
static __inline AesBlock128 __fastcall aes128ecb_decrypt(
AesBlock128 cypher,
AesBlock128 key)
{
return raw_aes128ecb_decrypt(cypher, key);
}
static __inline AesBlock128 __fastcall aes192ecb_encrypt(
AesBlock128 plain,
AesBlock192* key)
{
return raw_aes192ecb_encrypt(plain, key->lo, key->hi);
}
static __inline AesBlock128 __fastcall aes192ecb_decrypt(
AesBlock128 cypher,
AesBlock192* key)
{
return raw_aes192ecb_decrypt(cypher, key->lo, key->hi);
}
static __inline AesBlock128 __fastcall aes256ecb_encrypt(
AesBlock128 plain,
AesBlock256* key)
{
return raw_aes256ecb_encrypt(plain, key->lo, key->hi);
}
static __inline AesBlock128 __fastcall aes256ecb_decrypt(
AesBlock128 cypher,
AesBlock256* key)
{
return raw_aes256ecb_decrypt(cypher, key->lo, key->hi);
}
static __inline AesBlock128 __fastcall aes256cbc_encrypt(
AesBlock128 plain,
AesBlock256* key,
AesBlock128* initialization_vector)
{
return raw_aes256cbc_encrypt(plain, key->lo, key->hi, initialization_vector);
}
static __inline AesBlock128 __fastcall aes256cbc_decrypt(
AesBlock128 cypher,
AesBlock256* key,
AesBlock128* initialization_vector)
{
return raw_aes256cbc_decrypt(cypher, key->lo, key->hi, initialization_vector);
}
|