| Index: third_party/boringssl/linux-arm/crypto/aes/aesv8-armx32.S
|
| diff --git a/third_party/boringssl/linux-arm/crypto/aes/aesv8-armx32.S b/third_party/boringssl/linux-arm/crypto/aes/aesv8-armx32.S
|
| index 6f0ee7d81da9e2dacaa29c040e18dbb9e366a0ae..95a2ea4dc993cc50c73e77a99ddd3f9191d97097 100644
|
| --- a/third_party/boringssl/linux-arm/crypto/aes/aesv8-armx32.S
|
| +++ b/third_party/boringssl/linux-arm/crypto/aes/aesv8-armx32.S
|
| @@ -1,5 +1,5 @@
|
| #if defined(__arm__)
|
| -#include "arm_arch.h"
|
| +#include <openssl/arm_arch.h>
|
|
|
| #if __ARM_MAX_ARCH__>=7
|
| .text
|
| @@ -13,6 +13,7 @@
|
| .long 0x1b,0x1b,0x1b,0x1b
|
|
|
| .globl aes_v8_set_encrypt_key
|
| +.hidden aes_v8_set_encrypt_key
|
| .type aes_v8_set_encrypt_key,%function
|
| .align 5
|
| aes_v8_set_encrypt_key:
|
| @@ -183,6 +184,7 @@ aes_v8_set_encrypt_key:
|
| .size aes_v8_set_encrypt_key,.-aes_v8_set_encrypt_key
|
|
|
| .globl aes_v8_set_decrypt_key
|
| +.hidden aes_v8_set_decrypt_key
|
| .type aes_v8_set_decrypt_key,%function
|
| .align 5
|
| aes_v8_set_decrypt_key:
|
| @@ -220,6 +222,7 @@ aes_v8_set_decrypt_key:
|
| ldmia sp!,{r4,pc}
|
| .size aes_v8_set_decrypt_key,.-aes_v8_set_decrypt_key
|
| .globl aes_v8_encrypt
|
| +.hidden aes_v8_encrypt
|
| .type aes_v8_encrypt,%function
|
| .align 5
|
| aes_v8_encrypt:
|
| @@ -249,6 +252,7 @@ aes_v8_encrypt:
|
| bx lr
|
| .size aes_v8_encrypt,.-aes_v8_encrypt
|
| .globl aes_v8_decrypt
|
| +.hidden aes_v8_decrypt
|
| .type aes_v8_decrypt,%function
|
| .align 5
|
| aes_v8_decrypt:
|
| @@ -278,6 +282,7 @@ aes_v8_decrypt:
|
| bx lr
|
| .size aes_v8_decrypt,.-aes_v8_decrypt
|
| .globl aes_v8_cbc_encrypt
|
| +.hidden aes_v8_cbc_encrypt
|
| .type aes_v8_cbc_encrypt,%function
|
| .align 5
|
| aes_v8_cbc_encrypt:
|
| @@ -570,6 +575,7 @@ aes_v8_cbc_encrypt:
|
| ldmia sp!,{r4,r5,r6,r7,r8,pc}
|
| .size aes_v8_cbc_encrypt,.-aes_v8_cbc_encrypt
|
| .globl aes_v8_ctr32_encrypt_blocks
|
| +.hidden aes_v8_ctr32_encrypt_blocks
|
| .type aes_v8_ctr32_encrypt_blocks,%function
|
| .align 5
|
| aes_v8_ctr32_encrypt_blocks:
|
| @@ -753,4 +759,4 @@ aes_v8_ctr32_encrypt_blocks:
|
| ldmia sp!,{r4,r5,r6,r7,r8,r9,r10,pc}
|
| .size aes_v8_ctr32_encrypt_blocks,.-aes_v8_ctr32_encrypt_blocks
|
| #endif
|
| -#endif
|
| +#endif
|
|
|