aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/aes/algorithm.h
blob: d88cf591fc4f6b309758e00ebfe15c4e36410349 (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
// 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

#ifdef __cplusplus
extern "C"
{
#endif

typedef enum
{
    AES_AES128,
    AES_AES192,
    AES_AES256,
}
AES_Algorithm;

#ifdef __cplusplus
}
#endif