| Index: third_party/boringssl/linux-aarch64/crypto/aes/aesv8-armx64.S
|
| diff --git a/third_party/boringssl/linux-aarch64/crypto/aes/aesv8-armx64.S b/third_party/boringssl/linux-aarch64/crypto/aes/aesv8-armx64.S
|
| index c414476cdf72f7fcdda97fd8d1fe233989b6026c..3e8cb16e018fa6403881d4f581e2e53e42e13ac4 100644
|
| --- a/third_party/boringssl/linux-aarch64/crypto/aes/aesv8-armx64.S
|
| +++ b/third_party/boringssl/linux-aarch64/crypto/aes/aesv8-armx64.S
|
| @@ -1,5 +1,5 @@
|
| #if defined(__aarch64__)
|
| -#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:
|
| @@ -180,6 +181,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:
|
| @@ -219,6 +221,7 @@ aes_v8_set_decrypt_key:
|
| ret
|
| .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:
|
| @@ -248,6 +251,7 @@ aes_v8_encrypt:
|
| ret
|
| .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:
|
| @@ -277,6 +281,7 @@ aes_v8_decrypt:
|
| ret
|
| .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:
|
| @@ -567,6 +572,7 @@ aes_v8_cbc_encrypt:
|
| ret
|
| .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:
|
| @@ -748,4 +754,4 @@ aes_v8_ctr32_encrypt_blocks:
|
| ret
|
| .size aes_v8_ctr32_encrypt_blocks,.-aes_v8_ctr32_encrypt_blocks
|
| #endif
|
| -#endif
|
| +#endif
|
|
|