Jerry Yu | 4923131 | 2023-01-10 16:57:21 +0800 | [diff] [blame] | 1 | /* |
Dave Rodgman | f918d42 | 2023-03-17 17:52:23 +0000 | [diff] [blame] | 2 | * Armv8-A Cryptographic Extension support functions for Aarch64 |
Jerry Yu | 4923131 | 2023-01-10 16:57:21 +0800 | [diff] [blame] | 3 | * |
| 4 | * Copyright The Mbed TLS Contributors |
| 5 | * SPDX-License-Identifier: Apache-2.0 |
| 6 | * |
| 7 | * Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 8 | * not use this file except in compliance with the License. |
| 9 | * You may obtain a copy of the License at |
| 10 | * |
| 11 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | * |
| 13 | * Unless required by applicable law or agreed to in writing, software |
| 14 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 15 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | * See the License for the specific language governing permissions and |
| 17 | * limitations under the License. |
| 18 | */ |
| 19 | |
Dave Rodgman | 27e3c87 | 2023-10-08 10:29:26 +0100 | [diff] [blame] | 20 | #if defined(__clang__) && (__clang_major__ >= 4) |
| 21 | |
| 22 | /* Ideally, we would simply use MBEDTLS_ARCH_IS_ARMV8 in the following #if, |
| 23 | * but that is defined by build_info.h, and we need this block to happen first. */ |
| 24 | #if defined(__ARM_ARCH) |
| 25 | #if __ARM_ARCH >= 8 |
| 26 | #define MBEDTLS_AESCE_ARCH_IS_ARMV8 |
| 27 | #endif |
| 28 | #endif |
| 29 | |
| 30 | #if defined(MBEDTLS_AESCE_ARCH_IS_ARMV8) && !defined(__ARM_FEATURE_CRYPTO) |
Jerry Yu | 48b999c | 2023-03-03 15:51:07 +0800 | [diff] [blame] | 31 | /* TODO: Re-consider above after https://reviews.llvm.org/D131064 merged. |
| 32 | * |
| 33 | * The intrinsic declaration are guarded by predefined ACLE macros in clang: |
| 34 | * these are normally only enabled by the -march option on the command line. |
| 35 | * By defining the macros ourselves we gain access to those declarations without |
| 36 | * requiring -march on the command line. |
| 37 | * |
| 38 | * `arm_neon.h` could be included by any header file, so we put these defines |
| 39 | * at the top of this file, before any includes. |
| 40 | */ |
| 41 | #define __ARM_FEATURE_CRYPTO 1 |
Jerry Yu | ae129c3 | 2023-03-03 15:55:56 +0800 | [diff] [blame] | 42 | /* See: https://arm-software.github.io/acle/main/acle.html#cryptographic-extensions |
| 43 | * |
Jerry Yu | 490bf08 | 2023-03-06 15:21:44 +0800 | [diff] [blame] | 44 | * `__ARM_FEATURE_CRYPTO` is deprecated, but we need to continue to specify it |
| 45 | * for older compilers. |
Jerry Yu | ae129c3 | 2023-03-03 15:55:56 +0800 | [diff] [blame] | 46 | */ |
| 47 | #define __ARM_FEATURE_AES 1 |
Dave Rodgman | db6ab24 | 2023-03-14 16:03:57 +0000 | [diff] [blame] | 48 | #define MBEDTLS_ENABLE_ARM_CRYPTO_EXTENSIONS_COMPILER_FLAG |
Jerry Yu | 490bf08 | 2023-03-06 15:21:44 +0800 | [diff] [blame] | 49 | #endif |
Jerry Yu | 48b999c | 2023-03-03 15:51:07 +0800 | [diff] [blame] | 50 | |
Dave Rodgman | 27e3c87 | 2023-10-08 10:29:26 +0100 | [diff] [blame] | 51 | #endif /* defined(__clang__) && (__clang_major__ >= 4) */ |
| 52 | |
Jerry Yu | 4923131 | 2023-01-10 16:57:21 +0800 | [diff] [blame] | 53 | #include <string.h> |
| 54 | #include "common.h" |
| 55 | |
| 56 | #if defined(MBEDTLS_AESCE_C) |
| 57 | |
| 58 | #include "aesce.h" |
| 59 | |
Dave Rodgman | ece803b | 2023-10-08 20:24:48 +0100 | [diff] [blame^] | 60 | #if defined(MBEDTLS_ARCH_IS_ARMV8) && defined(__ARM_NEON) |
Jerry Yu | 4923131 | 2023-01-10 16:57:21 +0800 | [diff] [blame] | 61 | |
Jerry Yu | 61c4cfa | 2023-04-26 11:06:51 +0800 | [diff] [blame] | 62 | /* Compiler version checks. */ |
Jerry Yu | db368de | 2023-04-26 16:55:37 +0800 | [diff] [blame] | 63 | #if defined(__clang__) |
| 64 | # if __clang_major__ < 4 |
| 65 | # error "Minimum version of Clang for MBEDTLS_AESCE_C is 4.0." |
| 66 | # endif |
| 67 | #elif defined(__GNUC__) |
| 68 | # if __GNUC__ < 6 |
| 69 | # error "Minimum version of GCC for MBEDTLS_AESCE_C is 6.0." |
| 70 | # endif |
| 71 | #elif defined(_MSC_VER) |
Jerry Yu | 61c4cfa | 2023-04-26 11:06:51 +0800 | [diff] [blame] | 72 | /* TODO: We haven't verified MSVC from 1920 to 1928. If someone verified that, |
| 73 | * please update this and document of `MBEDTLS_AESCE_C` in |
| 74 | * `mbedtls_config.h`. */ |
Jerry Yu | db368de | 2023-04-26 16:55:37 +0800 | [diff] [blame] | 75 | # if _MSC_VER < 1929 |
| 76 | # error "Minimum version of MSVC for MBEDTLS_AESCE_C is 2019 version 16.11.2." |
| 77 | # endif |
Jerry Yu | 61c4cfa | 2023-04-26 11:06:51 +0800 | [diff] [blame] | 78 | #endif |
| 79 | |
Jerry Yu | 6b00f5a | 2023-05-04 16:30:21 +0800 | [diff] [blame] | 80 | #ifdef __ARM_NEON |
Jerry Yu | 08933d3 | 2023-04-27 18:28:00 +0800 | [diff] [blame] | 81 | #include <arm_neon.h> |
Dave Rodgman | 27e3c87 | 2023-10-08 10:29:26 +0100 | [diff] [blame] | 82 | |
| 83 | #if defined(MBEDTLS_ARCH_IS_ARM32) |
| 84 | #if defined(__clang__) |
| 85 | /* On clang for A32/T32, work around some missing intrinsics and types */ |
| 86 | |
| 87 | #ifndef vreinterpretq_p64_u8 |
| 88 | #define vreinterpretq_p64_u8 (poly64x2_t) |
| 89 | #endif |
| 90 | #ifndef vreinterpretq_u8_p128 |
| 91 | #define vreinterpretq_u8_p128 (uint8x16_t) |
| 92 | #endif |
| 93 | #ifndef vreinterpretq_u64_p64 |
| 94 | #define vreinterpretq_u64_p64 (uint64x2_t) |
| 95 | #endif |
| 96 | |
| 97 | typedef uint8x16_t poly128_t; |
| 98 | |
| 99 | static inline poly128_t vmull_p64(poly64_t a, poly64_t b) |
| 100 | { |
| 101 | poly128_t r; |
| 102 | asm ("vmull.p64 %[r], %[a], %[b]": [r] "=w" (r) : [a] "w" (a), [b] "w" (b) :); |
| 103 | return r; |
| 104 | } |
| 105 | |
| 106 | static inline poly64x1_t vget_low_p64(poly64x2_t a) |
| 107 | { |
| 108 | return (poly64x1_t) vget_low_u64(vreinterpretq_u64_p64(a)); |
| 109 | } |
| 110 | |
| 111 | static inline poly128_t vmull_high_p64(poly64x2_t a, poly64x2_t b) |
| 112 | { |
| 113 | return vmull_p64((poly64_t) (vget_high_u64((uint64x2_t) a)), |
| 114 | (poly64_t) (vget_high_u64((uint64x2_t) b))); |
| 115 | } |
| 116 | |
| 117 | #endif /* defined(__clang__) */ |
| 118 | |
| 119 | static inline uint8x16_t vrbitq_u8(uint8x16_t x) |
| 120 | { |
| 121 | /* There is no vrbitq_u8 instruction in A32/T32, so provide |
| 122 | * an equivalent non-Neon implementation. Reverse bit order in each |
| 123 | * byte with 4x rbit, rev. */ |
| 124 | asm ("ldm %[p], { r2-r5 } \n\t" |
| 125 | "rbit r2, r2 \n\t" |
| 126 | "rev r2, r2 \n\t" |
| 127 | "rbit r3, r3 \n\t" |
| 128 | "rev r3, r3 \n\t" |
| 129 | "rbit r4, r4 \n\t" |
| 130 | "rev r4, r4 \n\t" |
| 131 | "rbit r5, r5 \n\t" |
| 132 | "rev r5, r5 \n\t" |
| 133 | "stm %[p], { r2-r5 } \n\t" |
| 134 | : |
| 135 | /* Output: 16 bytes of memory pointed to by &x */ |
| 136 | "+m" (*(uint8_t(*)[16]) &x) |
| 137 | : |
| 138 | [p] "r" (&x) |
| 139 | : |
| 140 | "r2", "r3", "r4", "r5" |
| 141 | ); |
| 142 | return x; |
| 143 | } |
| 144 | |
| 145 | #endif /* defined(MBEDTLS_ARCH_IS_ARM32) */ |
| 146 | |
Jerry Yu | 6b00f5a | 2023-05-04 16:30:21 +0800 | [diff] [blame] | 147 | #else |
| 148 | #error "Target does not support NEON instructions" |
| 149 | #endif |
Jerry Yu | 08933d3 | 2023-04-27 18:28:00 +0800 | [diff] [blame] | 150 | |
Jerry Yu | 580e06f | 2023-04-28 17:42:40 +0800 | [diff] [blame] | 151 | #if !(defined(__ARM_FEATURE_CRYPTO) || defined(__ARM_FEATURE_AES)) || \ |
| 152 | defined(MBEDTLS_ENABLE_ARM_CRYPTO_EXTENSIONS_COMPILER_FLAG) |
Jerry Yu | b1d06bb | 2023-05-05 14:05:07 +0800 | [diff] [blame] | 153 | # if defined(__ARMCOMPILER_VERSION) |
| 154 | # if __ARMCOMPILER_VERSION <= 6090000 |
| 155 | # error "Must use minimum -march=armv8-a+crypto for MBEDTLS_AESCE_C" |
| 156 | # else |
Jerry Yu | 893be8d | 2023-07-13 17:32:11 +0800 | [diff] [blame] | 157 | # pragma clang attribute push (__attribute__((target("aes"))), apply_to=function) |
Jerry Yu | b1d06bb | 2023-05-05 14:05:07 +0800 | [diff] [blame] | 158 | # define MBEDTLS_POP_TARGET_PRAGMA |
| 159 | # endif |
| 160 | # elif defined(__clang__) |
Jerry Yu | 893be8d | 2023-07-13 17:32:11 +0800 | [diff] [blame] | 161 | # pragma clang attribute push (__attribute__((target("aes"))), apply_to=function) |
Jerry Yu | ec9be84 | 2023-03-14 10:42:47 +0800 | [diff] [blame] | 162 | # define MBEDTLS_POP_TARGET_PRAGMA |
| 163 | # elif defined(__GNUC__) |
Jerry Yu | ec9be84 | 2023-03-14 10:42:47 +0800 | [diff] [blame] | 164 | # pragma GCC push_options |
Beniamin Sandu | 471a975 | 2023-06-25 20:16:16 +0300 | [diff] [blame] | 165 | # pragma GCC target ("+crypto") |
Jerry Yu | ec9be84 | 2023-03-14 10:42:47 +0800 | [diff] [blame] | 166 | # define MBEDTLS_POP_TARGET_PRAGMA |
Jerry Yu | 07d28d8 | 2023-03-20 18:12:36 +0800 | [diff] [blame] | 167 | # elif defined(_MSC_VER) |
Jerry Yu | 61c4cfa | 2023-04-26 11:06:51 +0800 | [diff] [blame] | 168 | # error "Required feature(__ARM_FEATURE_AES) is not enabled." |
Jerry Yu | 4923131 | 2023-01-10 16:57:21 +0800 | [diff] [blame] | 169 | # endif |
Jerry Yu | 580e06f | 2023-04-28 17:42:40 +0800 | [diff] [blame] | 170 | #endif /* !(__ARM_FEATURE_CRYPTO || __ARM_FEATURE_AES) || |
| 171 | MBEDTLS_ENABLE_ARM_CRYPTO_EXTENSIONS_COMPILER_FLAG */ |
Jerry Yu | 4923131 | 2023-01-10 16:57:21 +0800 | [diff] [blame] | 172 | |
Dave Rodgman | 4566132 | 2023-08-04 12:31:58 +0100 | [diff] [blame] | 173 | #if defined(__linux__) && !defined(MBEDTLS_AES_USE_HARDWARE_ONLY) |
| 174 | |
Jerry Yu | b95c776 | 2023-01-10 16:59:51 +0800 | [diff] [blame] | 175 | #include <asm/hwcap.h> |
| 176 | #include <sys/auxv.h> |
Dave Rodgman | 4566132 | 2023-08-04 12:31:58 +0100 | [diff] [blame] | 177 | |
Dave Rodgman | b30adce | 2023-08-04 12:52:51 +0100 | [diff] [blame] | 178 | signed char mbedtls_aesce_has_support_result = -1; |
Jerry Yu | b95c776 | 2023-01-10 16:59:51 +0800 | [diff] [blame] | 179 | |
Jerry Yu | 3660623 | 2023-04-19 10:44:29 +0800 | [diff] [blame] | 180 | #if !defined(MBEDTLS_AES_USE_HARDWARE_ONLY) |
Jerry Yu | b95c776 | 2023-01-10 16:59:51 +0800 | [diff] [blame] | 181 | /* |
| 182 | * AES instruction support detection routine |
| 183 | */ |
Dave Rodgman | 4566132 | 2023-08-04 12:31:58 +0100 | [diff] [blame] | 184 | int mbedtls_aesce_has_support_impl(void) |
Jerry Yu | b95c776 | 2023-01-10 16:59:51 +0800 | [diff] [blame] | 185 | { |
Dave Rodgman | 4566132 | 2023-08-04 12:31:58 +0100 | [diff] [blame] | 186 | /* To avoid many calls to getauxval, cache the result. This is |
| 187 | * thread-safe, because we store the result in a char so cannot |
| 188 | * be vulnerable to non-atomic updates. |
| 189 | * It is possible that we could end up setting result more than |
| 190 | * once, but that is harmless. |
| 191 | */ |
Dave Rodgman | b30adce | 2023-08-04 12:52:51 +0100 | [diff] [blame] | 192 | if (mbedtls_aesce_has_support_result == -1) { |
Dave Rodgman | 851cf5a | 2023-10-08 12:26:41 +0100 | [diff] [blame] | 193 | #if defined(MBEDTLS_ARCH_IS_ARM32) |
| 194 | unsigned long auxval = getauxval(AT_HWCAP); |
| 195 | unsigned long auxval2 = getauxval(AT_HWCAP2); |
| 196 | if (((auxval & HWCAP_NEON) == HWCAP_NEON) && |
| 197 | ((auxval2 & HWCAP2_AES) == HWCAP2_AES)) { |
| 198 | mbedtls_aesce_has_support_result = 1; |
| 199 | } else { |
| 200 | mbedtls_aesce_has_support_result = 0; |
| 201 | } |
| 202 | #else |
Dave Rodgman | 4566132 | 2023-08-04 12:31:58 +0100 | [diff] [blame] | 203 | unsigned long auxval = getauxval(AT_HWCAP); |
| 204 | if ((auxval & (HWCAP_ASIMD | HWCAP_AES)) == |
| 205 | (HWCAP_ASIMD | HWCAP_AES)) { |
| 206 | mbedtls_aesce_has_support_result = 1; |
| 207 | } else { |
| 208 | mbedtls_aesce_has_support_result = 0; |
| 209 | } |
Dave Rodgman | 851cf5a | 2023-10-08 12:26:41 +0100 | [diff] [blame] | 210 | #endif |
Dave Rodgman | 4566132 | 2023-08-04 12:31:58 +0100 | [diff] [blame] | 211 | } |
| 212 | return mbedtls_aesce_has_support_result; |
Jerry Yu | b95c776 | 2023-01-10 16:59:51 +0800 | [diff] [blame] | 213 | } |
Jerry Yu | 0d4f4e5 | 2023-03-31 14:32:47 +0800 | [diff] [blame] | 214 | #endif |
Jerry Yu | b95c776 | 2023-01-10 16:59:51 +0800 | [diff] [blame] | 215 | |
Dave Rodgman | 4566132 | 2023-08-04 12:31:58 +0100 | [diff] [blame] | 216 | #endif /* defined(__linux__) && !defined(MBEDTLS_AES_USE_HARDWARE_ONLY) */ |
| 217 | |
Dave Rodgman | 48fd2ab | 2023-06-16 09:36:50 +0100 | [diff] [blame] | 218 | /* Single round of AESCE encryption */ |
| 219 | #define AESCE_ENCRYPT_ROUND \ |
| 220 | block = vaeseq_u8(block, vld1q_u8(keys)); \ |
| 221 | block = vaesmcq_u8(block); \ |
| 222 | keys += 16 |
| 223 | /* Two rounds of AESCE encryption */ |
| 224 | #define AESCE_ENCRYPT_ROUND_X2 AESCE_ENCRYPT_ROUND; AESCE_ENCRYPT_ROUND |
| 225 | |
Dave Rodgman | 9bb7e6f | 2023-06-16 09:41:21 +0100 | [diff] [blame] | 226 | MBEDTLS_OPTIMIZE_FOR_PERFORMANCE |
Jerry Yu | 2bb3d81 | 2023-01-10 17:38:26 +0800 | [diff] [blame] | 227 | static uint8x16_t aesce_encrypt_block(uint8x16_t block, |
| 228 | unsigned char *keys, |
| 229 | int rounds) |
| 230 | { |
Dave Rodgman | 73b0c0b | 2023-06-16 14:48:14 +0100 | [diff] [blame] | 231 | /* 10, 12 or 14 rounds. Unroll loop. */ |
Dave Rodgman | 96fdfb8 | 2023-06-15 16:21:31 +0100 | [diff] [blame] | 232 | if (rounds == 10) { |
| 233 | goto rounds_10; |
Jerry Yu | 2bb3d81 | 2023-01-10 17:38:26 +0800 | [diff] [blame] | 234 | } |
Dave Rodgman | 96fdfb8 | 2023-06-15 16:21:31 +0100 | [diff] [blame] | 235 | if (rounds == 12) { |
| 236 | goto rounds_12; |
| 237 | } |
Dave Rodgman | 48fd2ab | 2023-06-16 09:36:50 +0100 | [diff] [blame] | 238 | AESCE_ENCRYPT_ROUND_X2; |
Dave Rodgman | 96fdfb8 | 2023-06-15 16:21:31 +0100 | [diff] [blame] | 239 | rounds_12: |
Dave Rodgman | 48fd2ab | 2023-06-16 09:36:50 +0100 | [diff] [blame] | 240 | AESCE_ENCRYPT_ROUND_X2; |
Dave Rodgman | 96fdfb8 | 2023-06-15 16:21:31 +0100 | [diff] [blame] | 241 | rounds_10: |
Dave Rodgman | 48fd2ab | 2023-06-16 09:36:50 +0100 | [diff] [blame] | 242 | AESCE_ENCRYPT_ROUND_X2; |
| 243 | AESCE_ENCRYPT_ROUND_X2; |
| 244 | AESCE_ENCRYPT_ROUND_X2; |
| 245 | AESCE_ENCRYPT_ROUND_X2; |
| 246 | AESCE_ENCRYPT_ROUND; |
Jerry Yu | 2bb3d81 | 2023-01-10 17:38:26 +0800 | [diff] [blame] | 247 | |
Jerry Yu | c8bcdc8 | 2023-02-21 14:49:02 +0800 | [diff] [blame] | 248 | /* AES AddRoundKey for the previous round. |
| 249 | * SubBytes, ShiftRows for the final round. */ |
Dave Rodgman | 96fdfb8 | 2023-06-15 16:21:31 +0100 | [diff] [blame] | 250 | block = vaeseq_u8(block, vld1q_u8(keys)); |
| 251 | keys += 16; |
Jerry Yu | 2bb3d81 | 2023-01-10 17:38:26 +0800 | [diff] [blame] | 252 | |
Jerry Yu | c8bcdc8 | 2023-02-21 14:49:02 +0800 | [diff] [blame] | 253 | /* Final round: no MixColumns */ |
Jerry Yu | 3304c20 | 2023-02-22 14:37:11 +0800 | [diff] [blame] | 254 | |
| 255 | /* Final AddRoundKey */ |
Dave Rodgman | 96fdfb8 | 2023-06-15 16:21:31 +0100 | [diff] [blame] | 256 | block = veorq_u8(block, vld1q_u8(keys)); |
Jerry Yu | 2bb3d81 | 2023-01-10 17:38:26 +0800 | [diff] [blame] | 257 | |
| 258 | return block; |
| 259 | } |
| 260 | |
Dave Rodgman | 48fd2ab | 2023-06-16 09:36:50 +0100 | [diff] [blame] | 261 | /* Single round of AESCE decryption |
| 262 | * |
| 263 | * AES AddRoundKey, SubBytes, ShiftRows |
| 264 | * |
| 265 | * block = vaesdq_u8(block, vld1q_u8(keys)); |
| 266 | * |
| 267 | * AES inverse MixColumns for the next round. |
| 268 | * |
| 269 | * This means that we switch the order of the inverse AddRoundKey and |
| 270 | * inverse MixColumns operations. We have to do this as AddRoundKey is |
| 271 | * done in an atomic instruction together with the inverses of SubBytes |
| 272 | * and ShiftRows. |
| 273 | * |
| 274 | * It works because MixColumns is a linear operation over GF(2^8) and |
| 275 | * AddRoundKey is an exclusive or, which is equivalent to addition over |
| 276 | * GF(2^8). (The inverse of MixColumns needs to be applied to the |
| 277 | * affected round keys separately which has been done when the |
| 278 | * decryption round keys were calculated.) |
| 279 | * |
| 280 | * block = vaesimcq_u8(block); |
| 281 | */ |
| 282 | #define AESCE_DECRYPT_ROUND \ |
| 283 | block = vaesdq_u8(block, vld1q_u8(keys)); \ |
| 284 | block = vaesimcq_u8(block); \ |
| 285 | keys += 16 |
| 286 | /* Two rounds of AESCE decryption */ |
| 287 | #define AESCE_DECRYPT_ROUND_X2 AESCE_DECRYPT_ROUND; AESCE_DECRYPT_ROUND |
| 288 | |
Jerry Yu | 2bb3d81 | 2023-01-10 17:38:26 +0800 | [diff] [blame] | 289 | static uint8x16_t aesce_decrypt_block(uint8x16_t block, |
| 290 | unsigned char *keys, |
| 291 | int rounds) |
| 292 | { |
Dave Rodgman | 73b0c0b | 2023-06-16 14:48:14 +0100 | [diff] [blame] | 293 | /* 10, 12 or 14 rounds. Unroll loop. */ |
Dave Rodgman | 1c4451d | 2023-06-15 16:28:00 +0100 | [diff] [blame] | 294 | if (rounds == 10) { |
| 295 | goto rounds_10; |
Jerry Yu | 2bb3d81 | 2023-01-10 17:38:26 +0800 | [diff] [blame] | 296 | } |
Dave Rodgman | 1c4451d | 2023-06-15 16:28:00 +0100 | [diff] [blame] | 297 | if (rounds == 12) { |
| 298 | goto rounds_12; |
| 299 | } |
Dave Rodgman | 48fd2ab | 2023-06-16 09:36:50 +0100 | [diff] [blame] | 300 | AESCE_DECRYPT_ROUND_X2; |
Dave Rodgman | 1c4451d | 2023-06-15 16:28:00 +0100 | [diff] [blame] | 301 | rounds_12: |
Dave Rodgman | 48fd2ab | 2023-06-16 09:36:50 +0100 | [diff] [blame] | 302 | AESCE_DECRYPT_ROUND_X2; |
Dave Rodgman | 1c4451d | 2023-06-15 16:28:00 +0100 | [diff] [blame] | 303 | rounds_10: |
Dave Rodgman | 48fd2ab | 2023-06-16 09:36:50 +0100 | [diff] [blame] | 304 | AESCE_DECRYPT_ROUND_X2; |
| 305 | AESCE_DECRYPT_ROUND_X2; |
| 306 | AESCE_DECRYPT_ROUND_X2; |
| 307 | AESCE_DECRYPT_ROUND_X2; |
| 308 | AESCE_DECRYPT_ROUND; |
Jerry Yu | 2bb3d81 | 2023-01-10 17:38:26 +0800 | [diff] [blame] | 309 | |
Jerry Yu | c8bcdc8 | 2023-02-21 14:49:02 +0800 | [diff] [blame] | 310 | /* The inverses of AES AddRoundKey, SubBytes, ShiftRows finishing up the |
| 311 | * last full round. */ |
Dave Rodgman | 1c4451d | 2023-06-15 16:28:00 +0100 | [diff] [blame] | 312 | block = vaesdq_u8(block, vld1q_u8(keys)); |
| 313 | keys += 16; |
Jerry Yu | 2bb3d81 | 2023-01-10 17:38:26 +0800 | [diff] [blame] | 314 | |
Jerry Yu | c8bcdc8 | 2023-02-21 14:49:02 +0800 | [diff] [blame] | 315 | /* Inverse AddRoundKey for inverting the initial round key addition. */ |
Dave Rodgman | 1c4451d | 2023-06-15 16:28:00 +0100 | [diff] [blame] | 316 | block = veorq_u8(block, vld1q_u8(keys)); |
Jerry Yu | 2bb3d81 | 2023-01-10 17:38:26 +0800 | [diff] [blame] | 317 | |
| 318 | return block; |
| 319 | } |
| 320 | |
| 321 | /* |
| 322 | * AES-ECB block en(de)cryption |
| 323 | */ |
| 324 | int mbedtls_aesce_crypt_ecb(mbedtls_aes_context *ctx, |
| 325 | int mode, |
| 326 | const unsigned char input[16], |
| 327 | unsigned char output[16]) |
| 328 | { |
| 329 | uint8x16_t block = vld1q_u8(&input[0]); |
| 330 | unsigned char *keys = (unsigned char *) (ctx->buf + ctx->rk_offset); |
| 331 | |
| 332 | if (mode == MBEDTLS_AES_ENCRYPT) { |
| 333 | block = aesce_encrypt_block(block, keys, ctx->nr); |
| 334 | } else { |
| 335 | block = aesce_decrypt_block(block, keys, ctx->nr); |
| 336 | } |
| 337 | vst1q_u8(&output[0], block); |
| 338 | |
| 339 | return 0; |
| 340 | } |
| 341 | |
Jerry Yu | e096da1 | 2023-01-10 17:07:01 +0800 | [diff] [blame] | 342 | /* |
| 343 | * Compute decryption round keys from encryption round keys |
| 344 | */ |
| 345 | void mbedtls_aesce_inverse_key(unsigned char *invkey, |
| 346 | const unsigned char *fwdkey, |
| 347 | int nr) |
| 348 | { |
| 349 | int i, j; |
| 350 | j = nr; |
| 351 | vst1q_u8(invkey, vld1q_u8(fwdkey + j * 16)); |
| 352 | for (i = 1, j--; j > 0; i++, j--) { |
| 353 | vst1q_u8(invkey + i * 16, |
| 354 | vaesimcq_u8(vld1q_u8(fwdkey + j * 16))); |
| 355 | } |
| 356 | vst1q_u8(invkey + i * 16, vld1q_u8(fwdkey + j * 16)); |
| 357 | |
| 358 | } |
| 359 | |
Jerry Yu | c8bcdc8 | 2023-02-21 14:49:02 +0800 | [diff] [blame] | 360 | static inline uint32_t aes_rot_word(uint32_t word) |
Jerry Yu | 3f2fb71 | 2023-01-10 17:05:42 +0800 | [diff] [blame] | 361 | { |
| 362 | return (word << (32 - 8)) | (word >> 8); |
| 363 | } |
| 364 | |
Jerry Yu | c8bcdc8 | 2023-02-21 14:49:02 +0800 | [diff] [blame] | 365 | static inline uint32_t aes_sub_word(uint32_t in) |
Jerry Yu | 3f2fb71 | 2023-01-10 17:05:42 +0800 | [diff] [blame] | 366 | { |
Jerry Yu | c8bcdc8 | 2023-02-21 14:49:02 +0800 | [diff] [blame] | 367 | uint8x16_t v = vreinterpretq_u8_u32(vdupq_n_u32(in)); |
Jerry Yu | 3f2fb71 | 2023-01-10 17:05:42 +0800 | [diff] [blame] | 368 | uint8x16_t zero = vdupq_n_u8(0); |
Jerry Yu | c8bcdc8 | 2023-02-21 14:49:02 +0800 | [diff] [blame] | 369 | |
| 370 | /* vaeseq_u8 does both SubBytes and ShiftRows. Taking the first row yields |
| 371 | * the correct result as ShiftRows doesn't change the first row. */ |
| 372 | v = vaeseq_u8(zero, v); |
| 373 | return vgetq_lane_u32(vreinterpretq_u32_u8(v), 0); |
Jerry Yu | 3f2fb71 | 2023-01-10 17:05:42 +0800 | [diff] [blame] | 374 | } |
| 375 | |
| 376 | /* |
Jerry Yu | baae401 | 2023-02-21 15:26:13 +0800 | [diff] [blame] | 377 | * Key expansion function |
Jerry Yu | 3f2fb71 | 2023-01-10 17:05:42 +0800 | [diff] [blame] | 378 | */ |
Jerry Yu | baae401 | 2023-02-21 15:26:13 +0800 | [diff] [blame] | 379 | static void aesce_setkey_enc(unsigned char *rk, |
| 380 | const unsigned char *key, |
| 381 | const size_t key_bit_length) |
Jerry Yu | 3f2fb71 | 2023-01-10 17:05:42 +0800 | [diff] [blame] | 382 | { |
Jerry Yu | baae401 | 2023-02-21 15:26:13 +0800 | [diff] [blame] | 383 | static uint8_t const rcon[] = { 0x01, 0x02, 0x04, 0x08, 0x10, |
| 384 | 0x20, 0x40, 0x80, 0x1b, 0x36 }; |
Jerry Yu | 947bf96 | 2023-02-23 11:07:57 +0800 | [diff] [blame] | 385 | /* See https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.197.pdf |
| 386 | * - Section 5, Nr = Nk + 6 |
Jerry Yu | 2c26651 | 2023-03-01 11:18:20 +0800 | [diff] [blame] | 387 | * - Section 5.2, the length of round keys is Nb*(Nr+1) |
Jerry Yu | 947bf96 | 2023-02-23 11:07:57 +0800 | [diff] [blame] | 388 | */ |
| 389 | const uint32_t key_len_in_words = key_bit_length / 32; /* Nk */ |
| 390 | const size_t round_key_len_in_words = 4; /* Nb */ |
Jerry Yu | 2c26651 | 2023-03-01 11:18:20 +0800 | [diff] [blame] | 391 | const size_t rounds_needed = key_len_in_words + 6; /* Nr */ |
| 392 | const size_t round_keys_len_in_words = |
| 393 | round_key_len_in_words * (rounds_needed + 1); /* Nb*(Nr+1) */ |
| 394 | const uint32_t *rko_end = (uint32_t *) rk + round_keys_len_in_words; |
Jerry Yu | c8bcdc8 | 2023-02-21 14:49:02 +0800 | [diff] [blame] | 395 | |
Jerry Yu | 3304c20 | 2023-02-22 14:37:11 +0800 | [diff] [blame] | 396 | memcpy(rk, key, key_len_in_words * 4); |
Jerry Yu | 3f2fb71 | 2023-01-10 17:05:42 +0800 | [diff] [blame] | 397 | |
Jerry Yu | 3304c20 | 2023-02-22 14:37:11 +0800 | [diff] [blame] | 398 | for (uint32_t *rki = (uint32_t *) rk; |
| 399 | rki + key_len_in_words < rko_end; |
| 400 | rki += key_len_in_words) { |
| 401 | |
Jerry Yu | fac5a54 | 2023-02-23 10:13:40 +0800 | [diff] [blame] | 402 | size_t iteration = (rki - (uint32_t *) rk) / key_len_in_words; |
Jerry Yu | 3304c20 | 2023-02-22 14:37:11 +0800 | [diff] [blame] | 403 | uint32_t *rko; |
Jerry Yu | baae401 | 2023-02-21 15:26:13 +0800 | [diff] [blame] | 404 | rko = rki + key_len_in_words; |
| 405 | rko[0] = aes_rot_word(aes_sub_word(rki[key_len_in_words - 1])); |
Jerry Yu | 3304c20 | 2023-02-22 14:37:11 +0800 | [diff] [blame] | 406 | rko[0] ^= rcon[iteration] ^ rki[0]; |
Jerry Yu | 3f2fb71 | 2023-01-10 17:05:42 +0800 | [diff] [blame] | 407 | rko[1] = rko[0] ^ rki[1]; |
| 408 | rko[2] = rko[1] ^ rki[2]; |
| 409 | rko[3] = rko[2] ^ rki[3]; |
Jerry Yu | fac5a54 | 2023-02-23 10:13:40 +0800 | [diff] [blame] | 410 | if (rko + key_len_in_words > rko_end) { |
Jerry Yu | 3304c20 | 2023-02-22 14:37:11 +0800 | [diff] [blame] | 411 | /* Do not write overflow words.*/ |
| 412 | continue; |
| 413 | } |
Yanray Wang | e2bc158 | 2023-05-08 10:28:53 +0800 | [diff] [blame] | 414 | #if !defined(MBEDTLS_AES_ONLY_128_BIT_KEY_LENGTH) |
Jerry Yu | baae401 | 2023-02-21 15:26:13 +0800 | [diff] [blame] | 415 | switch (key_bit_length) { |
Jerry Yu | 3304c20 | 2023-02-22 14:37:11 +0800 | [diff] [blame] | 416 | case 128: |
| 417 | break; |
Jerry Yu | baae401 | 2023-02-21 15:26:13 +0800 | [diff] [blame] | 418 | case 192: |
Jerry Yu | 3304c20 | 2023-02-22 14:37:11 +0800 | [diff] [blame] | 419 | rko[4] = rko[3] ^ rki[4]; |
| 420 | rko[5] = rko[4] ^ rki[5]; |
Jerry Yu | baae401 | 2023-02-21 15:26:13 +0800 | [diff] [blame] | 421 | break; |
| 422 | case 256: |
Jerry Yu | 3304c20 | 2023-02-22 14:37:11 +0800 | [diff] [blame] | 423 | rko[4] = aes_sub_word(rko[3]) ^ rki[4]; |
| 424 | rko[5] = rko[4] ^ rki[5]; |
| 425 | rko[6] = rko[5] ^ rki[6]; |
| 426 | rko[7] = rko[6] ^ rki[7]; |
Jerry Yu | baae401 | 2023-02-21 15:26:13 +0800 | [diff] [blame] | 427 | break; |
Jerry Yu | 3f2fb71 | 2023-01-10 17:05:42 +0800 | [diff] [blame] | 428 | } |
Yanray Wang | e2bc158 | 2023-05-08 10:28:53 +0800 | [diff] [blame] | 429 | #endif /* !MBEDTLS_AES_ONLY_128_BIT_KEY_LENGTH */ |
Jerry Yu | 3f2fb71 | 2023-01-10 17:05:42 +0800 | [diff] [blame] | 430 | } |
| 431 | } |
| 432 | |
| 433 | /* |
| 434 | * Key expansion, wrapper |
| 435 | */ |
| 436 | int mbedtls_aesce_setkey_enc(unsigned char *rk, |
| 437 | const unsigned char *key, |
| 438 | size_t bits) |
| 439 | { |
| 440 | switch (bits) { |
Jerry Yu | baae401 | 2023-02-21 15:26:13 +0800 | [diff] [blame] | 441 | case 128: |
| 442 | case 192: |
| 443 | case 256: |
Jerry Yu | ba1e78f | 2023-02-24 11:18:16 +0800 | [diff] [blame] | 444 | aesce_setkey_enc(rk, key, bits); |
| 445 | break; |
| 446 | default: |
| 447 | return MBEDTLS_ERR_AES_INVALID_KEY_LENGTH; |
Jerry Yu | 3f2fb71 | 2023-01-10 17:05:42 +0800 | [diff] [blame] | 448 | } |
| 449 | |
| 450 | return 0; |
| 451 | } |
| 452 | |
Jerry Yu | df87a12 | 2023-01-10 18:17:15 +0800 | [diff] [blame] | 453 | #if defined(MBEDTLS_GCM_C) |
| 454 | |
Jerry Yu | 132d0cb | 2023-03-02 17:35:53 +0800 | [diff] [blame] | 455 | #if !defined(__clang__) && defined(__GNUC__) && __GNUC__ == 5 |
Jerry Yu | 1ac7f6b | 2023-03-07 15:44:59 +0800 | [diff] [blame] | 456 | /* Some intrinsics are not available for GCC 5.X. */ |
Jerry Yu | 132d0cb | 2023-03-02 17:35:53 +0800 | [diff] [blame] | 457 | #define vreinterpretq_p64_u8(a) ((poly64x2_t) a) |
| 458 | #define vreinterpretq_u8_p128(a) ((uint8x16_t) a) |
| 459 | static inline poly64_t vget_low_p64(poly64x2_t __a) |
| 460 | { |
| 461 | uint64x2_t tmp = (uint64x2_t) (__a); |
| 462 | uint64x1_t lo = vcreate_u64(vgetq_lane_u64(tmp, 0)); |
| 463 | return (poly64_t) (lo); |
| 464 | } |
| 465 | #endif /* !__clang__ && __GNUC__ && __GNUC__ == 5*/ |
| 466 | |
Jerry Yu | 1ac7f6b | 2023-03-07 15:44:59 +0800 | [diff] [blame] | 467 | /* vmull_p64/vmull_high_p64 wrappers. |
| 468 | * |
| 469 | * Older compilers miss some intrinsic functions for `poly*_t`. We use |
| 470 | * uint8x16_t and uint8x16x3_t as input/output parameters. |
| 471 | */ |
Jerry Yu | 9db4b1f | 2023-03-21 16:56:43 +0800 | [diff] [blame] | 472 | #if defined(__GNUC__) && !defined(__clang__) |
| 473 | /* GCC reports incompatible type error without cast. GCC think poly64_t and |
| 474 | * poly64x1_t are different, that is different with MSVC and Clang. */ |
| 475 | #define MBEDTLS_VMULL_P64(a, b) vmull_p64((poly64_t) a, (poly64_t) b) |
| 476 | #else |
| 477 | /* MSVC reports `error C2440: 'type cast'` with cast. Clang does not report |
| 478 | * error with/without cast. And I think poly64_t and poly64x1_t are same, no |
| 479 | * cast for clang also. */ |
| 480 | #define MBEDTLS_VMULL_P64(a, b) vmull_p64(a, b) |
| 481 | #endif |
Jerry Yu | df87a12 | 2023-01-10 18:17:15 +0800 | [diff] [blame] | 482 | static inline uint8x16_t pmull_low(uint8x16_t a, uint8x16_t b) |
| 483 | { |
Jerry Yu | 9db4b1f | 2023-03-21 16:56:43 +0800 | [diff] [blame] | 484 | |
Jerry Yu | df87a12 | 2023-01-10 18:17:15 +0800 | [diff] [blame] | 485 | return vreinterpretq_u8_p128( |
Jerry Yu | 9db4b1f | 2023-03-21 16:56:43 +0800 | [diff] [blame] | 486 | MBEDTLS_VMULL_P64( |
| 487 | vget_low_p64(vreinterpretq_p64_u8(a)), |
| 488 | vget_low_p64(vreinterpretq_p64_u8(b)) |
| 489 | )); |
Jerry Yu | df87a12 | 2023-01-10 18:17:15 +0800 | [diff] [blame] | 490 | } |
| 491 | |
| 492 | static inline uint8x16_t pmull_high(uint8x16_t a, uint8x16_t b) |
| 493 | { |
| 494 | return vreinterpretq_u8_p128( |
| 495 | vmull_high_p64(vreinterpretq_p64_u8(a), |
| 496 | vreinterpretq_p64_u8(b))); |
| 497 | } |
| 498 | |
Jerry Yu | f0526a9 | 2023-03-14 15:00:29 +0800 | [diff] [blame] | 499 | /* GHASH does 128b polynomial multiplication on block in GF(2^128) defined by |
Jerry Yu | 49b4367 | 2023-03-13 10:09:34 +0800 | [diff] [blame] | 500 | * `x^128 + x^7 + x^2 + x + 1`. |
Jerry Yu | 1ac7f6b | 2023-03-07 15:44:59 +0800 | [diff] [blame] | 501 | * |
| 502 | * Arm64 only has 64b->128b polynomial multipliers, we need to do 4 64b |
| 503 | * multiplies to generate a 128b. |
| 504 | * |
| 505 | * `poly_mult_128` executes polynomial multiplication and outputs 256b that |
| 506 | * represented by 3 128b due to code size optimization. |
| 507 | * |
| 508 | * Output layout: |
| 509 | * | | | | |
| 510 | * |------------|-------------|-------------| |
| 511 | * | ret.val[0] | h3:h2:00:00 | high 128b | |
Jerry Yu | 8f81060 | 2023-03-14 17:28:52 +0800 | [diff] [blame] | 512 | * | ret.val[1] | :m2:m1:00 | middle 128b | |
Jerry Yu | 1ac7f6b | 2023-03-07 15:44:59 +0800 | [diff] [blame] | 513 | * | ret.val[2] | : :l1:l0 | low 128b | |
| 514 | */ |
Jerry Yu | df87a12 | 2023-01-10 18:17:15 +0800 | [diff] [blame] | 515 | static inline uint8x16x3_t poly_mult_128(uint8x16_t a, uint8x16_t b) |
| 516 | { |
| 517 | uint8x16x3_t ret; |
Jerry Yu | 8f81060 | 2023-03-14 17:28:52 +0800 | [diff] [blame] | 518 | uint8x16_t h, m, l; /* retval high/middle/low */ |
Jerry Yu | 1ac7f6b | 2023-03-07 15:44:59 +0800 | [diff] [blame] | 519 | uint8x16_t c, d, e; |
| 520 | |
| 521 | h = pmull_high(a, b); /* h3:h2:00:00 = a1*b1 */ |
| 522 | l = pmull_low(a, b); /* : :l1:l0 = a0*b0 */ |
| 523 | c = vextq_u8(b, b, 8); /* :c1:c0 = b0:b1 */ |
| 524 | d = pmull_high(a, c); /* :d2:d1:00 = a1*b0 */ |
| 525 | e = pmull_low(a, c); /* :e2:e1:00 = a0*b1 */ |
| 526 | m = veorq_u8(d, e); /* :m2:m1:00 = d + e */ |
| 527 | |
| 528 | ret.val[0] = h; |
| 529 | ret.val[1] = m; |
| 530 | ret.val[2] = l; |
Jerry Yu | df87a12 | 2023-01-10 18:17:15 +0800 | [diff] [blame] | 531 | return ret; |
| 532 | } |
| 533 | |
Jerry Yu | 1ac7f6b | 2023-03-07 15:44:59 +0800 | [diff] [blame] | 534 | /* |
| 535 | * Modulo reduction. |
| 536 | * |
| 537 | * See: https://www.researchgate.net/publication/285612706_Implementing_GCM_on_ARMv8 |
| 538 | * |
| 539 | * Section 4.3 |
| 540 | * |
| 541 | * Modular reduction is slightly more complex. Write the GCM modulus as f(z) = |
| 542 | * z^128 +r(z), where r(z) = z^7+z^2+z+ 1. The well known approach is to |
Jerry Yu | be4fdef | 2023-03-15 14:50:42 +0800 | [diff] [blame] | 543 | * consider that z^128 ≡r(z) (mod z^128 +r(z)), allowing us to write the 256-bit |
| 544 | * operand to be reduced as a(z) = h(z)z^128 +l(z)≡h(z)r(z) + l(z). That is, we |
| 545 | * simply multiply the higher part of the operand by r(z) and add it to l(z). If |
Jerry Yu | 1ac7f6b | 2023-03-07 15:44:59 +0800 | [diff] [blame] | 546 | * the result is still larger than 128 bits, we reduce again. |
| 547 | */ |
| 548 | static inline uint8x16_t poly_mult_reduce(uint8x16x3_t input) |
Jerry Yu | df87a12 | 2023-01-10 18:17:15 +0800 | [diff] [blame] | 549 | { |
Jerry Yu | 1ac7f6b | 2023-03-07 15:44:59 +0800 | [diff] [blame] | 550 | uint8x16_t const ZERO = vdupq_n_u8(0); |
Jerry Yu | 8b6df3f | 2023-03-21 16:59:13 +0800 | [diff] [blame] | 551 | |
Jerry Yu | df87a12 | 2023-01-10 18:17:15 +0800 | [diff] [blame] | 552 | uint64x2_t r = vreinterpretq_u64_u8(vdupq_n_u8(0x87)); |
Jerry Yu | 8b6df3f | 2023-03-21 16:59:13 +0800 | [diff] [blame] | 553 | #if defined(__GNUC__) |
| 554 | /* use 'asm' as an optimisation barrier to prevent loading MODULO from |
| 555 | * memory. It is for GNUC compatible compilers. |
| 556 | */ |
Jerry Yu | df87a12 | 2023-01-10 18:17:15 +0800 | [diff] [blame] | 557 | asm ("" : "+w" (r)); |
Jerry Yu | 8b6df3f | 2023-03-21 16:59:13 +0800 | [diff] [blame] | 558 | #endif |
Jerry Yu | 1ac7f6b | 2023-03-07 15:44:59 +0800 | [diff] [blame] | 559 | uint8x16_t const MODULO = vreinterpretq_u8_u64(vshrq_n_u64(r, 64 - 8)); |
Jerry Yu | 8f81060 | 2023-03-14 17:28:52 +0800 | [diff] [blame] | 560 | uint8x16_t h, m, l; /* input high/middle/low 128b */ |
Jerry Yu | 1ac7f6b | 2023-03-07 15:44:59 +0800 | [diff] [blame] | 561 | uint8x16_t c, d, e, f, g, n, o; |
| 562 | h = input.val[0]; /* h3:h2:00:00 */ |
| 563 | m = input.val[1]; /* :m2:m1:00 */ |
| 564 | l = input.val[2]; /* : :l1:l0 */ |
| 565 | c = pmull_high(h, MODULO); /* :c2:c1:00 = reduction of h3 */ |
| 566 | d = pmull_low(h, MODULO); /* : :d1:d0 = reduction of h2 */ |
| 567 | e = veorq_u8(c, m); /* :e2:e1:00 = m2:m1:00 + c2:c1:00 */ |
| 568 | f = pmull_high(e, MODULO); /* : :f1:f0 = reduction of e2 */ |
| 569 | g = vextq_u8(ZERO, e, 8); /* : :g1:00 = e1:00 */ |
| 570 | n = veorq_u8(d, l); /* : :n1:n0 = d1:d0 + l1:l0 */ |
| 571 | o = veorq_u8(n, f); /* o1:o0 = f1:f0 + n1:n0 */ |
| 572 | return veorq_u8(o, g); /* = o1:o0 + g1:00 */ |
Jerry Yu | df87a12 | 2023-01-10 18:17:15 +0800 | [diff] [blame] | 573 | } |
| 574 | |
| 575 | /* |
| 576 | * GCM multiplication: c = a times b in GF(2^128) |
| 577 | */ |
| 578 | void mbedtls_aesce_gcm_mult(unsigned char c[16], |
| 579 | const unsigned char a[16], |
| 580 | const unsigned char b[16]) |
| 581 | { |
| 582 | uint8x16_t va, vb, vc; |
| 583 | va = vrbitq_u8(vld1q_u8(&a[0])); |
| 584 | vb = vrbitq_u8(vld1q_u8(&b[0])); |
| 585 | vc = vrbitq_u8(poly_mult_reduce(poly_mult_128(va, vb))); |
| 586 | vst1q_u8(&c[0], vc); |
| 587 | } |
| 588 | |
| 589 | #endif /* MBEDTLS_GCM_C */ |
Jerry Yu | 48b999c | 2023-03-03 15:51:07 +0800 | [diff] [blame] | 590 | |
| 591 | #if defined(MBEDTLS_POP_TARGET_PRAGMA) |
| 592 | #if defined(__clang__) |
| 593 | #pragma clang attribute pop |
| 594 | #elif defined(__GNUC__) |
| 595 | #pragma GCC pop_options |
| 596 | #endif |
| 597 | #undef MBEDTLS_POP_TARGET_PRAGMA |
| 598 | #endif |
| 599 | |
Dave Rodgman | 27e3c87 | 2023-10-08 10:29:26 +0100 | [diff] [blame] | 600 | #endif /* MBEDTLS_ARCH_IS_ARMV8 */ |
Jerry Yu | 4923131 | 2023-01-10 16:57:21 +0800 | [diff] [blame] | 601 | |
| 602 | #endif /* MBEDTLS_AESCE_C */ |