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.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.c')
-rw-r--r-- | networking/tls.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/networking/tls.c b/networking/tls.c index db0034e..db7be07 100644 --- a/networking/tls.c +++ b/networking/tls.c @@ -1387,12 +1387,12 @@ static void find_key_in_der_cert(tls_state_t *tls, uint8_t *der, int len) /* enter subjectPublicKeyInfo */ der = enter_der_item(der, &end); { /* check subjectPublicKeyInfo.algorithm */ - static const uint8_t OID_RSA_KEY_ALG[] = { + static const uint8_t OID_RSA_KEY_ALG[] ALIGN1 = { 0x30,0x0d, // SEQ 13 bytes 0x06,0x09, 0x2a,0x86,0x48,0x86,0xf7,0x0d,0x01,0x01,0x01, //OID_RSA_KEY_ALG 42.134.72.134.247.13.1.1.1 //0x05,0x00, // NULL }; - static const uint8_t OID_ECDSA_KEY_ALG[] = { + static const uint8_t OID_ECDSA_KEY_ALG[] ALIGN1 = { 0x30,0x13, // SEQ 0x13 bytes 0x06,0x07, 0x2a,0x86,0x48,0xce,0x3d,0x02,0x01, //OID_ECDSA_KEY_ALG 42.134.72.206.61.2.1 //allow any curve code for now... @@ -2083,7 +2083,7 @@ static void send_client_key_exchange(tls_state_t *tls) } } -static const uint8_t rec_CHANGE_CIPHER_SPEC[] = { +static const uint8_t rec_CHANGE_CIPHER_SPEC[] ALIGN1 = { RECORD_TYPE_CHANGE_CIPHER_SPEC, TLS_MAJ, TLS_MIN, 00, 01, 01 }; |