comparison libtomcrypt/src/ciphers/aes/aes.c @ 1435:f849a5ca2efc

update to libtomcrypt 1.17 (with Dropbear changes)
author Matt Johnston <matt@ucc.asn.au>
date Sat, 24 Jun 2017 17:50:50 +0800
parents 0e1465709336
children 6dba84798cd5
comparison
equal deleted inserted replaced
1434:27b9ddb06b09 1435:f849a5ca2efc
4 * algorithms in a highly modular and flexible manner. 4 * algorithms in a highly modular and flexible manner.
5 * 5 *
6 * The library is free for all purposes without any express 6 * The library is free for all purposes without any express
7 * guarantee it works. 7 * guarantee it works.
8 * 8 *
9 * Tom St Denis, [email protected], http://libtomcrypt.com 9 * Tom St Denis, [email protected], http://libtom.org
10 */ 10 */
11 11
12 /* AES implementation by Tom St Denis 12 /* AES implementation by Tom St Denis
13 * 13 *
14 * Derived from the Public Domain source code by 14 * Derived from the Public Domain source code by
30 Implementation of AES 30 Implementation of AES
31 */ 31 */
32 32
33 #include "tomcrypt.h" 33 #include "tomcrypt.h"
34 34
35 #ifdef RIJNDAEL 35 #ifdef LTC_RIJNDAEL
36 36
37 #ifndef ENCRYPT_ONLY 37 #ifndef ENCRYPT_ONLY
38 38
39 #define SETUP rijndael_setup 39 #define SETUP rijndael_setup
40 #define ECB_ENC rijndael_ecb_encrypt 40 #define ECB_ENC rijndael_ecb_encrypt
763 } 763 }
764 764
765 #endif 765 #endif
766 766
767 767
768 /* $Source: /cvs/libtom/libtomcrypt/src/ciphers/aes/aes.c,v $ */ 768 /* $Source$ */
769 /* $Revision: 1.14 $ */ 769 /* $Revision$ */
770 /* $Date: 2006/11/08 23:01:06 $ */ 770 /* $Date$ */