Skip to content
Snippets Groups Projects
Commit d7537ca6 authored by Niels Möller's avatar Niels Möller
Browse files

Reduced support for AES_SMALL.

Rev: src/nettle/aes-internal.h:1.12
parent 58f73bd0
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,7 @@
#define _aes_decrypt _nettle_aes_decrypt
#define _aes_encrypt_table _nettle_aes_encrypt_table
/* Define to use only small tables. */
/* Define to use only small tables. FIXME: Currently not working. */
#ifndef AES_SMALL
# define AES_SMALL 0
#endif
......@@ -44,16 +44,6 @@
# define AES_TABLE_SIZE 4
#endif
/* Assembler code using the table should get link errors if linked
* against a small table. */
#if AES_SMALL
# define _aes_encrypt_table _nettle_aes_encrypt_table_small
# define _aes_decrypt_table _nettle_aes_decrypt_table_small
#else
# define _aes_encrypt_table _nettle_aes_encrypt_table
# define _aes_decrypt_table _nettle_aes_decrypt_table
#endif
struct aes_table
{
uint8_t sbox[0x100];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment