/hal_espressif-3.6.0/docs/en/api-reference/protocols/ |
D | openssl_apis.rst | 35 SSLV3.0 version SSL context client method point 58 TLSV1.0 version SSL context client method point 81 TLSV1.1 version SSL context client method point 104 TLSV1.2 version SSL context client method point 127 TLSV1.2 version SSL context client method point 150 SSLV3.0 version SSL context server method point 173 TLSV1.0 version SSL context server method point 196 TLSV1.1 version SSL context server method point 220 TLSV1.2 version SSL context server method point 243 TLSV1.2 version SSL context server method point [all …]
|
/hal_espressif-3.6.0/components/bootloader/subproject/components/micro-ecc/ |
D | uECC_verify_antifault.c | 32 const uECC_word_t *point; in uECC_verify_antifault() local 95 point = points[(!!uECC_vli_testBit(u1, num_bits - 1)) | in uECC_verify_antifault() 97 uECC_vli_set(rx, point, num_words); in uECC_verify_antifault() 98 uECC_vli_set(ry, point + num_words, num_words); in uECC_verify_antifault() 107 point = points[index]; in uECC_verify_antifault() 108 if (point) { in uECC_verify_antifault() 109 uECC_vli_set(tx, point, num_words); in uECC_verify_antifault() 110 uECC_vli_set(ty, point + num_words, num_words); in uECC_verify_antifault()
|
/hal_espressif-3.6.0/components/wpa_supplicant/src/crypto/ |
D | crypto_mbedtls-ec.c | 175 const struct crypto_ec_point *point, u8 *x, u8 *y) in crypto_ec_point_to_bin() argument 180 if(crypto_bignum_to_bin((struct crypto_bignum *) & ((mbedtls_ecp_point *) point)->X, in crypto_ec_point_to_bin() 188 if(crypto_bignum_to_bin((struct crypto_bignum *) & ((mbedtls_ecp_point *) point)->Y, in crypto_ec_point_to_bin() 201 mbedtls_ecp_point *point = (mbedtls_ecp_point *)pt; in crypto_ec_get_affine_coordinates() local 203 if (!mbedtls_ecp_is_zero(point) && (mbedtls_mpi_cmp_int( &point->Z, 1 ) == 0 )) { in crypto_ec_get_affine_coordinates() 210 MBEDTLS_MPI_CHK(mbedtls_mpi_copy((mbedtls_mpi*) x, &((mbedtls_ecp_point* )point)->X)); in crypto_ec_get_affine_coordinates() 213 MBEDTLS_MPI_CHK(mbedtls_mpi_copy((mbedtls_mpi*) y, &((mbedtls_ecp_point* )point)->Y)); in crypto_ec_get_affine_coordinates() 497 const struct crypto_ec_point *point) in crypto_debug_print_point() argument 501 if (crypto_ec_point_to_bin(e, point, x, y) < 0) { in crypto_debug_print_point() 527 mbedtls_ecp_point *point = NULL; in crypto_ec_set_pubkey_point() local [all …]
|
/hal_espressif-3.6.0/components/bt/esp_ble_mesh/mesh_common/tinycrypt/src/ |
D | ecc_dsa.c | 205 const uECC_word_t *point; in uECC_verify() local 260 point = points[(!!uECC_vli_testBit(u1, num_bits - 1)) | in uECC_verify() 262 uECC_vli_set(rx, point, num_words); in uECC_verify() 263 uECC_vli_set(ry, point + num_words, num_words); in uECC_verify() 272 point = points[index]; in uECC_verify() 273 if (point) { in uECC_verify() 274 uECC_vli_set(tx, point, num_words); in uECC_verify() 275 uECC_vli_set(ty, point + num_words, num_words); in uECC_verify()
|
D | ecc.c | 621 uECC_word_t EccPoint_isZero(const uECC_word_t *point, uECC_Curve curve) in EccPoint_isZero() argument 623 return uECC_vli_isZero(point, curve->num_words * 2); in EccPoint_isZero() 728 void EccPoint_mult(uECC_word_t *result, const uECC_word_t *point, in EccPoint_mult() argument 741 uECC_vli_set(Rx[1], point, num_words); in EccPoint_mult() 742 uECC_vli_set(Ry[1], point + num_words, num_words); in EccPoint_mult() 758 uECC_vli_modMult_fast(z, z, point, curve); /* xP * Yb * (X1 - X0) */ in EccPoint_mult() 761 uECC_vli_modMult_fast(z, z, point + num_words, curve); in EccPoint_mult() 862 int uECC_valid_point(const uECC_word_t *point, uECC_Curve curve) in uECC_valid_point() argument 869 if (EccPoint_isZero(point, curve)) { in uECC_valid_point() 874 if (uECC_vli_cmp_unsafe(curve->p, point, num_words) != 1 || in uECC_valid_point() [all …]
|
/hal_espressif-3.6.0/components/bootloader/subproject/components/micro-ecc/micro-ecc/ |
D | uECC.c | 741 #define EccPoint_isZero(point, curve) uECC_vli_isZero((point), (curve)->num_words * 2) argument 858 const uECC_word_t * point, in EccPoint_mult() argument 871 uECC_vli_set(Rx[1], point, num_words); in EccPoint_mult() 872 uECC_vli_set(Ry[1], point + num_words, num_words); in EccPoint_mult() 888 uECC_vli_modMult_fast(z, z, point, curve); /* xP * Yb * (X1 - X0) */ in EccPoint_mult() 891 uECC_vli_modMult_fast(z, z, point + num_words, curve); in EccPoint_mult() 1094 uECC_word_t *point = (uECC_word_t *)public_key; in uECC_decompress() local 1096 uECC_word_t point[uECC_MAX_WORDS * 2]; in uECC_decompress() 1098 uECC_word_t *y = point + curve->num_words; in uECC_decompress() 1102 uECC_vli_bytesToNative(point, compressed + 1, curve->num_bytes); in uECC_decompress() [all …]
|
D | asm_avr.inc | 350 "sbiw r30, 3 \n\t" /* move z back to point at tmp */ 388 "sbiw r30, 24 \n\t" /* move z back to point at tmp */ 389 "sbiw r26, 40 \n\t" /* move x back to point at product */ 402 /* at this point x is at the end of product, y is at the end of result, 404 "sbiw r28, 20 \n\t" /* move y back to point at result */ 405 "adiw r30, 4 \n\t" /* move z to point to the end of tmp */ 427 "sbiw r26, 3 \n\t" /* move x back to point at beginning */ 460 "sbiw r26, 8 \n\t" /* move x back to point at beginning of actual data */ 479 "sbiw r28, 20 \n\t" /* move y back to point at result */ 685 "sbiw r30, 37 \n\t" /* move z back to point at tmp */ [all …]
|
D | uECC_vli.h | 150 int uECC_valid_point(const uECC_word_t *point, uECC_Curve curve); 156 const uECC_word_t *point,
|
/hal_espressif-3.6.0/components/esp_system/ |
D | README.md | 13 should maintain the definition of having the origin point at `g_startup_time`. 18 is at the point where the underlying timer starts counting. 24 Currently implemented in terms of system time, as the point of origin is fixed.
|
/hal_espressif-3.6.0/docs/en/api-reference/network/ |
D | esp_wifi.rst | 11 - Station mode (aka STA mode or Wi-Fi client mode). {IDF_TARGET_NAME} connects to an access point. 13 …mode ({IDF_TARGET_NAME} is concurrently an access point and a station connected to another access …
|
/hal_espressif-3.6.0/docs/en/api-guides/ |
D | startup.rst | 15 3. :ref:`application-startup` executes. At this point the second CPU and RTOS scheduler are started. 34 …point address and jump immediately to it. If ``RTC_CNTL_STORE6_REG`` is zero, or ``RTC_CNTL_STORE7… 65 …he second stage bootloader, it jumps to the second stage bootloader entry point found in the binar… 80 … the integrity of the application and then jumps to the application entry point found in the binar… 100 ESP-IDF application entry point is ``call_start_cpu0`` function found in :idf_file:`components/esp_… 134 …- Initialize the heap allocator (before this point all allocations must be static or on the stack). 169 …When running system initialization, the code on PRO CPU sets the entry point for APP CPU, de-asser… 173 … and then waits for the PRO CPU to start the FreeRTOS scheduler, at which point it executes ``esp_…
|
/hal_espressif-3.6.0/components/bt/esp_ble_mesh/mesh_common/tinycrypt/include/tinycrypt/ |
D | ecc.h | 302 void EccPoint_mult(uECC_word_t *result, const uECC_word_t *point, 320 uECC_word_t EccPoint_isZero(const uECC_word_t *point, uECC_Curve curve); 505 int uECC_valid_point(const uECC_word_t *point, uECC_Curve curve);
|
/hal_espressif-3.6.0/examples/protocols/http_server/restful_server/main/ |
D | Kconfig.projbuild | 46 string "Website mount point in VFS" 49 Specify the mount point in VFS.
|
/hal_espressif-3.6.0/examples/build_system/cmake/linux_host_app/ |
D | README.md | 9 1. The entry-point on Linux is `int main(int argc, char **argv)`, instead of `void app_main(void)` … 10 …d app_main(void)` function is still included to make the connection to the IDF entry point clearer.
|
/hal_espressif-3.6.0/docs/en/api-reference/provisioning/ |
D | provisioning.rst | 98 …point" which corresponds to logical channel for communication for specific type of information. Fo…
|
/hal_espressif-3.6.0/examples/storage/nvs_rw_blob/ |
D | README.md | 14 … simpler example *storage/nvs_rw_value*, that has been used as a starting point for preparing this… 43 At this point, press "Boot" button and hold it for a second. The board will perform software restar…
|
/hal_espressif-3.6.0/tools/test_apps/system/gdb_loadable_elf/ |
D | gdbinit_esp32 | 6 # Run to a specific point in ROM code,
|
D | gdbinit_esp32c3 | 6 # Run to a specific point in ROM code,
|
D | gdbinit_esp32s2 | 6 # Run to a specific point in ROM code,
|
/hal_espressif-3.6.0/docs/en/api-guides/performance/ |
D | speed.rst | 83 …point arithmetic (``float``). Even though {IDF_TARGET_NAME} has a single precision hardware floati… 84 …point arithmetic (``float``). On {IDF_TARGET_NAME} these calculations are emulated in software and… 85 …point arithmetic (``double``). These calculations are emulated in software and are very slow. If p…
|
/hal_espressif-3.6.0/components/bootloader/subproject/main/ld/esp32/ |
D | bootloader.ld | 16 /* 63kB, IRAM. We skip the first 1k to prevent the entry point being 26 /* Default entry point: */
|
/hal_espressif-3.6.0/components/esp_rom/esp32s2/ld/ |
D | esp32s2.rom.newlib-nano.ld | 4 Floating point formats are supported by setting _printf_float and
|
/hal_espressif-3.6.0/examples/peripherals/wave_gen/ |
D | README.md | 39 Each output point value is calculated by the DAC resolution of 8-bits (0~255). All of these raw val… 60 If enabled, the expected voltage of each point will be printed on the terminal.
|
/hal_espressif-3.6.0/docs/en/api-reference/system/ |
D | freertos.rst | 42 …Scheduler`. Instead, ESP-IDF FreeRTOS is started automatically. The entry point is a user defined … 45 - The ``app_main`` function is allowed to return at any point (i.e., before the application termina…
|
/hal_espressif-3.6.0/components/esptool_py/esptool/docs/en/advanced-topics/ |
D | firmware-image-format.rst | 37 …| 4-7 | Entry point address … 55 …| 4-7 | Entry point address …
|