diff options
author | Ron Yorston <rmy@pobox.com> | 2019-05-27 11:56:52 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2019-05-27 11:56:52 +0100 |
commit | a61949401890cbb33a9d6c4571b51c53460ad438 (patch) | |
tree | 64dedaddb89896d5b1670a421af123670ca2120b /networking/tls_aes.c | |
parent | 03a7b173605a890e1db5177ecd5b8dd591081c41 (diff) | |
parent | bcb1fc3e6ca6fe902610f507eaf9b0b58a5c583a (diff) | |
download | busybox-w32-a61949401890cbb33a9d6c4571b51c53460ad438.tar.gz busybox-w32-a61949401890cbb33a9d6c4571b51c53460ad438.tar.bz2 busybox-w32-a61949401890cbb33a9d6c4571b51c53460ad438.zip |
Merge branch 'busybox' into merge
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 cf6b5fe3d..5400ad9b5 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) | |||
130 | // The round constant word array, Rcon[i], contains the values given by | 130 | // The round constant word array, Rcon[i], contains the values given by |
131 | // x to th e power (i-1) being powers of x (x is denoted as {02}) in the field GF(2^8). | 131 | // x to th e power (i-1) being powers of x (x is denoted as {02}) in the field GF(2^8). |
132 | // Note that i starts at 2, not 0. | 132 | // Note that i starts at 2, not 0. |
133 | static const uint8_t Rcon[] = { | 133 | static const uint8_t Rcon[] ALIGN1 = { |
134 | 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1b, 0x36 | 134 | 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1b, 0x36 |
135 | //..... 0x6c, 0xd8, 0xab, 0x4d, 0x9a, 0x2f, 0x5e, 0xbc, 0x63, 0xc6,... | 135 | //..... 0x6c, 0xd8, 0xab, 0x4d, 0x9a, 0x2f, 0x5e, 0xbc, 0x63, 0xc6,... |
136 | // but aes256 only uses values up to 0x36 | 136 | // but aes256 only uses values up to 0x36 |