diff options
author | Denys Vlasenko | 2019-05-21 17:29:24 +0200 |
---|---|---|
committer | Denys Vlasenko | 2019-05-21 17:29:24 +0200 |
commit | 84fc645605827d53aa3e749dfff309978b1bc73d (patch) | |
tree | faf841135de862f1173c8661a80de7640894f485 /networking/tls_aes.c | |
parent | 831844c13931f14bd0433c1eb848c863288a8c06 (diff) | |
download | busybox-84fc645605827d53aa3e749dfff309978b1bc73d.zip busybox-84fc645605827d53aa3e749dfff309978b1bc73d.tar.gz |
*: slap on a few ALIGN1/2s where appropriate
The result of looking at "grep -F -B2 '*fill*' busybox_unstripped.map"
text data bss dec hex filename
952537 485 7296 960318 ea73e busybox_old
952527 485 7296 960308 ea734 busybox_unstripped
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/tls_aes.c')
-rw-r--r-- | networking/tls_aes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/tls_aes.c b/networking/tls_aes.c index cf6b5fe..5400ad9 100644 --- a/networking/tls_aes.c +++ b/networking/tls_aes.c @@ -130,7 +130,7 @@ static int KeyExpansion(uint32_t *RoundKey, const void *key, unsigned key_len) // The round constant word array, Rcon[i], contains the values given by // x to th e power (i-1) being powers of x (x is denoted as {02}) in the field GF(2^8). // Note that i starts at 2, not 0. - static const uint8_t Rcon[] = { + static const uint8_t Rcon[] ALIGN1 = { 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1b, 0x36 //..... 0x6c, 0xd8, 0xab, 0x4d, 0x9a, 0x2f, 0x5e, 0xbc, 0x63, 0xc6,... // but aes256 only uses values up to 0x36 |