Home
last modified time | relevance | path

Searched refs:temp2 (Results 1 – 3 of 3) sorted by relevance

/hal_espressif-3.6.0/components/wpa_supplicant/src/crypto/
Dcrypto_mbedtls-ec.c376 mbedtls_mpi temp, temp2, num; in crypto_ec_point_compute_y_sqr() local
385 mbedtls_mpi_init(&temp2); in crypto_ec_point_compute_y_sqr()
400 MBEDTLS_MPI_CHK(mbedtls_mpi_mul_mpi(&temp2, (const mbedtls_mpi *) x, &num)); in crypto_ec_point_compute_y_sqr()
401 MBEDTLS_MPI_CHK(mbedtls_mpi_mod_mpi(&temp2, &temp2, &e->group.P)); in crypto_ec_point_compute_y_sqr()
404 MBEDTLS_MPI_CHK(mbedtls_mpi_add_mpi(&temp2, &temp2, &e->group.B)); in crypto_ec_point_compute_y_sqr()
405 MBEDTLS_MPI_CHK(mbedtls_mpi_mod_mpi(&temp2, &temp2, &e->group.P)); in crypto_ec_point_compute_y_sqr()
408 MBEDTLS_MPI_CHK(mbedtls_mpi_add_mpi(&temp2, &temp2, &temp)); in crypto_ec_point_compute_y_sqr()
409 MBEDTLS_MPI_CHK(mbedtls_mpi_mod_mpi(y_sqr, &temp2, &e->group.P)); in crypto_ec_point_compute_y_sqr()
413 mbedtls_mpi_free(&temp2); in crypto_ec_point_compute_y_sqr()
/hal_espressif-3.6.0/components/mbedtls/port/sha/parallel_engine/
Desp_sha256.c202 temp2 = S2(a) + F0(a,b,c); \
203 d += temp1; h = temp1 + temp2; \
241 uint32_t temp1, temp2, W[64]; in mbedtls_sha256_software_process() local
Desp_sha512.c270 uint64_t temp1, temp2, W[80]; in mbedtls_sha512_software_process() local
288 temp2 = S2(a) + F0(a,b,c); \ in mbedtls_sha512_software_process()
289 d += temp1; h = temp1 + temp2; \ in mbedtls_sha512_software_process()