Home
last modified time | relevance | path

Searched refs:one (Results 1 – 25 of 69) sorted by relevance

123

/hal_espressif-latest/components/wpa_supplicant/src/common/
Ddragonfly.c90 struct crypto_bignum *tmp, *pm1, *one; in dragonfly_get_rand_1_to_p_1() local
94 one = crypto_bignum_init_set((const u8 *) "\x01", 1); in dragonfly_get_rand_1_to_p_1()
95 if (!tmp || !pm1 || !one || in dragonfly_get_rand_1_to_p_1()
96 crypto_bignum_sub(prime, one, pm1) < 0 || in dragonfly_get_rand_1_to_p_1()
98 crypto_bignum_add(tmp, one, tmp) < 0) { in dragonfly_get_rand_1_to_p_1()
104 crypto_bignum_deinit(one, 0); in dragonfly_get_rand_1_to_p_1()
223 struct crypto_bignum *tmp, *one; in dragonfly_sqrt() local
233 one = crypto_bignum_init_uint(1); in dragonfly_sqrt()
238 !tmp || !one || in dragonfly_sqrt()
240 crypto_bignum_add(prime, one, tmp) < 0 || in dragonfly_sqrt()
[all …]
Dsae.c578 struct crypto_bignum *a, *u2, *t1, *t2, *z, *t, *zero, *one, *two, *three, in sswu() local
606 one = crypto_bignum_init_uint(1); in sswu()
615 if (!u2 || !t1 || !t2 || !z || !t || !zero || !one || !two || !three || in sswu()
658 crypto_bignum_addmod(one, t, prime, t2) < 0 || in sswu()
697 if (crypto_bignum_sub(prime, one, t1) < 0 || in sswu()
766 crypto_bignum_deinit(one, 0); in sswu()
925 struct crypto_bignum *one = NULL, *two = NULL, *bn = NULL, *tmp = NULL, in sae_derive_pt_ffc() local
957 one = crypto_bignum_init_uint(1); in sae_derive_pt_ffc()
960 if (!bn || !one || !two || !tmp || in sae_derive_pt_ffc()
973 crypto_bignum_sub(prime, one, tmp) < 0 || in sae_derive_pt_ffc()
[all …]
/hal_espressif-latest/components/mbedtls/port/
Desp_bignum.c295 mbedtls_mpi X_, one; in mpi_montgomery_exp_calc() local
298 mbedtls_mpi_init(&one); in mpi_montgomery_exp_calc()
299 if ( ( ( ret = mbedtls_mpi_grow(&one, hw_words) ) != 0 ) || in mpi_montgomery_exp_calc()
300 ( ( ret = mbedtls_mpi_set_bit(&one, 0, 1) ) != 0 ) ) { in mpi_montgomery_exp_calc()
317 MBEDTLS_MPI_CHK( esp_mont_hw_op(Z, Rinv, &one, M, Mprime, hw_words, true) ); in mpi_montgomery_exp_calc()
333 MBEDTLS_MPI_CHK( esp_mont_hw_op(Z, Z, &one, M, Mprime, hw_words, true) ); in mpi_montgomery_exp_calc()
341 mbedtls_mpi_free(&one); in mpi_montgomery_exp_calc()
Dnet_sockets.c259 int one = 1; in mbedtls_net_accept() local
274 (const char *) &one, sizeof( one ) ) != 0 ) { in mbedtls_net_accept()
/hal_espressif-latest/components/esp_common/include/
Desp_macros.h42 #define CHOOSE_MACRO_VA_ARG_INN(one, MACRO1, MACRO2, ...) MACRO1 argument
45 #define CHOOSE_MACRO_VA_ARG_INN(one, two, MACRO1, MACRO2, ...) MACRO1
/hal_espressif-latest/components/heap/
Dinternals.md9one of the heap component API functions placed in IRAM have to also be placed in IRAM. Symmetrical…
/hal_espressif-latest/zephyr/scripts/pinctrl/
DREADME.md44 - Though the fields `sigi` and `sigo` are optional, at least one of them must be present in the tar…
45 - If the `gpio` field is formed by either only one pin number or only one pin number range, in any …
/hal_espressif-latest/tools/esptool_py/docs/en/espefuse/
Dindex.rst6 … the purpose of reading/writing ("burning") the one-time-programmable eFuses. Burning occurs only …
10 …Because eFuse is one-time-programmable, it is possible to permanently damage or "brick" your {IDF_…
107 …se blocks only writable once. If you need to write multiple keys/eFuses to one block using differe…
109 …nd Flash Encryption key into one BLOCK3 for the ``ESP32-C2`` chip. Using these commands individual…
174 - Combine multiple commands into one with this :ref:`perform-multiple-operations` feature.
Dexecute-scripts-cmd.rst6 The ``espefuse.py execute_scripts`` command executes scripts to burn at one time.
21 This command allows burning all needed efuses at one time based on your own python script and contr…
33 This command supports nesting. This means that one script can be called from another script (see th…
Ddump-cmd.rst15 - ``joint`` - All eFuse blocks are stored in one file;
119 To save all eFuse blocks in one file, use the following command:
Dsummary-cmd.rst41 Some eFuses have no protection at all, and some eFuses have only one read or write protection. Ther…
139 …ly the value of the eFuse specified as an argument will be displayed. Only one eFuse can be specif…
Dburn-efuse-cmd.rst21 … different eFuse blocks or not. The format is the same as for burning just one eFuse, just list th…
93 …an be burned to the GPIO numbers where the flash is connected. If at least one of these eFuses is …
/hal_espressif-latest/components/bootloader/
Dproject_include.cmake9 # cmake project under this one
67 # (to pick up a new signing key if one exists, etc.)
102 # (to pick up a new verification key if one exists, etc.)
/hal_espressif-latest/components/efuse/src/
Desp_efuse_api.c146 const uint8_t one = 1; in esp_efuse_write_field_bit() local
158 return esp_efuse_write_field_blob(field, &one, 1); in esp_efuse_write_field_bit()
/hal_espressif-latest/components/wpa_supplicant/
DCOPYING15 license option (the one with advertisement clause removed) is compatible
DREADME7 These programs are licensed under the BSD license (the one with
/hal_espressif-latest/tools/esptool_py/docs/en/esptool/
Dentering-bootloader.rst15 Espressif chips choose the boot mode each time they reset. A reset event can happen in one of sever…
/hal_espressif-latest/components/esp_hw_support/port/esp32s2/
DKconfig.mac10 to the final octet of the base MAC address. If the number of universal MAC addresses is one,
/hal_espressif-latest/components/spi_flash/
DKconfig48 # to inherit the value of that one
146 … in flash once written, as SPI NOR flash can only set bits to one when an entire sector is erased.
147 After erasing, individual bits can only be written from one to zero.
149 … Note that some software (such as SPIFFS) which is aware of SPI NOR flash may write one bits as an
171 This option should be enabled, if any one of the following is true: (1) need to write
257 If a duration of one erase command is large
/hal_espressif-latest/components/wpa_supplicant/esp_supplicant/src/crypto/
Dcrypto_mbedtls-ec.c253 mbedtls_mpi one; in crypto_ec_point_add() local
255 mbedtls_mpi_init(&one); in crypto_ec_point_add()
257 MBEDTLS_MPI_CHK(mbedtls_mpi_lset( &one, 1 )); in crypto_ec_point_add()
258 …mbedtls_ecp_muladd(&e->group, (mbedtls_ecp_point *) c, &one, (const mbedtls_ecp_point *)a , &one, … in crypto_ec_point_add()
261 mbedtls_mpi_free(&one); in crypto_ec_point_add()
/hal_espressif-latest/components/esp_psram/esp32/
DKconfig.spiram44 …Note: If the third mode(80Mhz+80Mhz) is enabled for SPI RAM of type 32MBit, one of the HSPI/VSPI h…
280 …When both flash and PSRAM is working under 80MHz, and the PSRAM is of type 32MBit, one of the HSPI…
281 host will be used to output the clock. Select which one to use here.
301 1.8V flash and 1.8V psram, this value can only be one of 6, 7, 8, 9, 10, 11, 16, 17.
310 1.8V flash and 1.8V psram, this value can only be one of 6, 7, 8, 9, 10, 11, 16, 17.
322 so this value can only be one of 6, 7, 8, 9, 10, 11, 16, 17.
331 so this value can only be one of 6, 7, 8, 9, 10, 11, 16, 17.
/hal_espressif-latest/tools/esptool_py/docs/en/
Dindex.rst10 * Read and write the one-time-programmable efuses.
Dresources.rst12 …se check existing `issues <https://github.com/espressif/esptool/issues>`_ before opening a new one.
/hal_espressif-latest/components/hal/include/hal/
Dreadme.md14 independent from each other so that the upper layer can change/perform one of the options/operation…
/hal_espressif-latest/components/esp_hw_support/
DREADME.md3 …ardware-related operations for supporting the system. These operations are one level above that of…

123