/hal_espressif-latest/components/wpa_supplicant/src/crypto/ |
D | sha256-internal.c | 73 #define S(x, n) RORc((x), (n)) macro 75 #define Sigma0(x) (S(x, 2) ^ S(x, 13) ^ S(x, 22)) 76 #define Sigma1(x) (S(x, 6) ^ S(x, 11) ^ S(x, 25)) 77 #define Gamma0(x) (S(x, 7) ^ S(x, 18) ^ R(x, 3)) 78 #define Gamma1(x) (S(x, 17) ^ S(x, 19) ^ R(x, 10)) 86 u32 S[8], W[64], t0, t1; in sha256_compress() local 92 S[i] = md->state[i]; in sha256_compress() 113 RND(S[0], S[1], S[2], S[3], S[4], S[5], S[6], S[7], i); in sha256_compress() 114 t = S[7]; S[7] = S[6]; S[6] = S[5]; S[5] = S[4]; in sha256_compress() 115 S[4] = S[3]; S[3] = S[2]; S[2] = S[1]; S[1] = S[0]; S[0] = t; in sha256_compress() [all …]
|
D | sha512-internal.c | 94 #define S(x, n) ROR64c(x, n) macro 96 #define Sigma0(x) (S(x, 28) ^ S(x, 34) ^ S(x, 39)) 97 #define Sigma1(x) (S(x, 14) ^ S(x, 18) ^ S(x, 41)) 98 #define Gamma0(x) (S(x, 1) ^ S(x, 8) ^ R(x, 7)) 99 #define Gamma1(x) (S(x, 19) ^ S(x, 61) ^ R(x, 6)) 112 u64 S[8], t0, t1; in sha512_compress() local 122 S[i] = md->state[i]; in sha512_compress() 137 t0 = S[7] + Sigma1(S[4]) + Ch(S[4], S[5], S[6]) + K[i] + W[i]; in sha512_compress() 138 t1 = Sigma0(S[0]) + Maj(S[0], S[1], S[2]); in sha512_compress() 139 S[7] = S[6]; in sha512_compress() [all …]
|
D | rc4.c | 14 #define S_SWAP(a,b) do { u8 t = S[a]; S[a] = S[b]; S[b] = t; } while(0) 20 u8 S[256], *pos; in rc4_skip() local 25 S[i] = i; in rc4_skip() 29 j = (j + S[i] + key[kpos]) & 0xff; in rc4_skip() 40 j = (j + S[i]) & 0xff; in rc4_skip() 48 j = (j + S[i]) & 0xff; in rc4_skip() 50 *pos++ ^= S[(S[i] + S[j]) & 0xff]; in rc4_skip()
|
D | aes-gcm.c | 230 const u8 *crypt, size_t crypt_len, u8 *S) in aes_gcm_ghash() argument 240 ghash_start(S); in aes_gcm_ghash() 241 ghash(H, aad, aad_len, S); in aes_gcm_ghash() 242 ghash(H, crypt, crypt_len, S); in aes_gcm_ghash() 245 ghash(H, len_buf, sizeof(len_buf), S); in aes_gcm_ghash() 247 wpa_hexdump_key(MSG_EXCESSIVE, "S = GHASH_H(...)", S, 16); in aes_gcm_ghash() 260 u8 S[16]; in aes_gcm_ae() local 272 aes_gcm_ghash(H, aad, aad_len, crypt, plain_len, S); in aes_gcm_ae() 275 aes_gctr(aes, J0, S, sizeof(S), tag); in aes_gcm_ae() 294 u8 S[16], T[16]; in aes_gcm_ad() local [all …]
|
/hal_espressif-latest/components/esp_system/port/soc/esp32s2/ |
D | CMakeLists.txt | 1 set(srcs "highint_hdl.S" 7 "../../arch/xtensa/panic_handler_asm.S" 9 "../../arch/xtensa/expression_with_stack_asm.S" 11 "../../arch/xtensa/debug_helpers_asm.S" 18 "../../arch/xtensa/esp_ipc_isr_handler.S" 19 "../../arch/xtensa/esp_ipc_isr_routines.S") 27 #linker will ignore highint_hdl.S as it has no other files depending on any
|
/hal_espressif-latest/components/esp_system/port/soc/esp32s3/ |
D | CMakeLists.txt | 1 set(srcs "highint_hdl.S" 8 "../../arch/xtensa/panic_handler_asm.S" 10 "../../arch/xtensa/expression_with_stack_asm.S" 12 "../../arch/xtensa/debug_helpers_asm.S" 19 "../../arch/xtensa/esp_ipc_isr_handler.S" 20 "../../arch/xtensa/esp_ipc_isr_routines.S") 28 #linker will ignore panic_highint_hdl.S as it has no other files depending on any
|
/hal_espressif-latest/components/esp_system/port/soc/esp32/ |
D | CMakeLists.txt | 1 set(srcs "highint_hdl.S" 7 "../../arch/xtensa/panic_handler_asm.S" 9 "../../arch/xtensa/expression_with_stack_asm.S" 11 "../../arch/xtensa/debug_helpers_asm.S" 18 "../../arch/xtensa/esp_ipc_isr_handler.S" 19 "../../arch/xtensa/esp_ipc_isr_routines.S") 27 #linker will ignore panic_highint_hdl.S as it has no other files depending on any
|
/hal_espressif-latest/components/hal/ |
D | xt_wdt_hal.c | 34 uint32_t S = ((4 * rtc_clk_frequency_khz) / 32); in xt_wdt_hal_calculate() local 39 uint8_t off = S - DIV_COMP_N_MAX * M; in xt_wdt_hal_calculate()
|
/hal_espressif-latest/components/newlib/port/ |
D | CMakeLists.txt | 4 target_sources(${COMPONENT_LIB} PRIVATE "${CMAKE_CURRENT_LIST_DIR}/riscv/port_stdatomic.S")
|
/hal_espressif-latest/components/esp_system/port/soc/esp32c2/ |
D | CMakeLists.txt | 6 "../../arch/riscv/expression_with_stack_asm.S"
|
/hal_espressif-latest/components/esp_system/port/soc/esp32c6/ |
D | CMakeLists.txt | 6 "../../arch/riscv/expression_with_stack_asm.S"
|
/hal_espressif-latest/components/esp_system/port/soc/esp32h2/ |
D | CMakeLists.txt | 7 "../../arch/riscv/expression_with_stack_asm.S"
|
/hal_espressif-latest/components/esp_system/port/soc/esp32c3/ |
D | CMakeLists.txt | 7 "../../arch/riscv/expression_with_stack_asm.S"
|
/hal_espressif-latest/components/riscv/ |
D | CMakeLists.txt | 16 "vectors.S")
|
/hal_espressif-latest/components/xtensa/ |
D | CMakeLists.txt | 11 list(APPEND srcs "xtensa_intr.c" "xtensa_intr_asm.S")
|
/hal_espressif-latest/tools/esptool_py/test/secure_images/ |
D | rsa_secure_boot_signing_key3.pem | 3 fZyr1jGMLOzuhAWADeAEF5cIsNtlTuGupRIjj+5S/Nzbl4jxkXUIcIxpMPDu8RqI
|
/hal_espressif-latest/components/mbedtls/port/sha/parallel_engine/ |
D | esp_sha1.c | 145 #define S(x,n) ((x << n) | ((x & 0xFFFFFFFF) >> (32 - n))) in mbedtls_sha1_software_process() macro 151 ( W[t & 0x0F] = S(temp,1) ) \ in mbedtls_sha1_software_process() 156 e += S(a,5) + F(b,c,d) + K + x; b = S(b,30); \ in mbedtls_sha1_software_process()
|
/hal_espressif-latest/components/esp_hw_support/ |
D | CMakeLists.txt | 105 list(APPEND srcs "sleep_cpu_asm.S")
|
/hal_espressif-latest/components/wpa_supplicant/esp_supplicant/src/crypto/ |
D | crypto_mbedtls-ec.c | 33 #define ACCESS_ECDH(S, var) S->MBEDTLS_PRIVATE(var) argument 35 #define ACCESS_ECDH(S, var) S->MBEDTLS_PRIVATE(ctx).MBEDTLS_PRIVATE(mbed_ecdh).MBEDTLS_PRIVATE(var) argument
|
/hal_espressif-latest/components/esp_rom/ |
D | CMakeLists.txt | 43 list(APPEND sources "patches/esp_rom_longjmp.S") 59 list(APPEND sources "patches/esp_rom_cache_writeback_esp32s3.S")
|
/hal_espressif-latest/zephyr/esp32/ |
D | CMakeLists.txt | 126 zephyr_sources(src/hal/windowspill_asm.S) 321 ../../components/esp_rom/patches/esp_rom_longjmp.S
|
/hal_espressif-latest/components/newlib/ |
D | COPYING.NEWLIB | 336 (17) S. L. Moshier 338 Author: S. L. Moshier. 340 Copyright (c) 1984,2000 S.L. Moshier 477 OF ANY KIND. IN NO EVENT SHALL INTEL'S TOTAL LIABILITY EXCEED THE SUM
|
/hal_espressif-latest/components/mbedtls/esp_crt_bundle/ |
D | cacrt_all.pem | 544 WQqraffAsgRFelQArr5T9rXn4fg8ozHSqf4hUmTFpmfwdQcGlBSBVcYn5AGPF8Fqcde+S/uUWH1+ 878 S+LI+H+SqHZGnEJlPqQewQcDWkYtuJfzt9WyVSHvutxMAJf7FJUnM7/oQ0dG0giZFmA7mn7S5u04 1145 A7RBZckQrg4FY8aAamkw/dLukO8NJ9+flXP04SXabBbeQTg06ov80egEFGEtQX6sx3dOy1FU+16S 3261 x06MZTMQZBf9JBeW0Y3COmor6xOLRPIh80oat3df1+2IpHLlOR+Vnb5nwXARPbv0+Em34yaXOp/S
|
/hal_espressif-latest/zephyr/esp32s2/ |
D | CMakeLists.txt | 327 ../../components/esp_rom/patches/esp_rom_longjmp.S
|
/hal_espressif-latest/zephyr/esp32c6/ |
D | CMakeLists.txt | 171 ../../components/esp_hw_support/sleep_cpu_asm.S
|