]> git.sur5r.net Git - freertos/blob - FreeRTOS-Plus/Source/WolfSSL/cyassl/ctaocrypt/aes.h
Update WolfSSL library to the latest version.
[freertos] / FreeRTOS-Plus / Source / WolfSSL / cyassl / ctaocrypt / aes.h
1 /* aes.h
2  *
3  * Copyright (C) 2006-2015 wolfSSL Inc.
4  *
5  * This file is part of wolfSSL. (formerly known as CyaSSL)
6  *
7  * wolfSSL is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * wolfSSL is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
20  */
21
22
23 #ifndef NO_AES
24
25 #ifndef CTAO_CRYPT_AES_H
26 #define CTAO_CRYPT_AES_H
27
28 #include <wolfssl/wolfcrypt/aes.h>
29 #define AesSetKey            wc_AesSetKey
30 #define AesSetIV             wc_AesSetIV
31 #define AesCbcEncrypt        wc_AesCbcEncrypt
32 #define AesCbcDecrypt        wc_AesCbcDecrypt
33 #define AesCbcDecryptWithKey wc_AesCbcDecryptWithKey
34
35 /* AES-CTR */
36 #ifdef WOLFSSL_AES_COUNTER
37     #define AesCtrEncrypt wc_AesCtrEncrypt
38 #endif
39 /* AES-DIRECT */
40 #if defined(WOLFSSL_AES_DIRECT)
41     #define AesEncryptDirect wc_AesEncryptDirect
42     #define AesDecryptDirect wc_AesDecryptDirect
43     #define AesSetKeyDirect  wc_AesSetKeyDirect
44 #endif
45 #ifdef HAVE_AESGCM
46     #define AesGcmSetKey  wc_AesGcmSetKey
47     #define AesGcmEncrypt wc_AesGcmEncrypt
48     #define AesGcmDecrypt wc_AesGcmDecrypt
49     #define GmacSetKey    wc_GmacSetKey
50     #define GmacUpdate    wc_GmacUpdate
51 #endif /* HAVE_AESGCM */
52 #ifdef HAVE_AESCCM
53     #define AesCcmSetKey  wc_AesCcmSetKey
54     #define AesCcmEncrypt wc_AesCcmEncrypt
55     #define AesCcmDecrypt wc_AesCcmDecrypt
56 #endif /* HAVE_AESCCM */
57
58 #ifdef HAVE_CAVIUM
59     #define AesInitCavium wc_AesInitCavium
60     #define AesFreeCavium wc_AesFreeCavium
61 #endif
62
63 #endif /* CTAO_CRYPT_AES_H */
64 #endif /* NO_AES */
65