Searched refs:PUT_UINT32_BE (Results 1 – 7 of 7) sorted by relevance
/hal_espressif-latest/components/mbedtls/port/sha/parallel_engine/ |
D | esp_sha256.c | 59 #ifndef PUT_UINT32_BE 60 #define PUT_UINT32_BE(n,b,i) \ macro 350 PUT_UINT32_BE( high, msglen, 0 ); in mbedtls_sha256_finish() 351 PUT_UINT32_BE( low, msglen, 4 ); in mbedtls_sha256_finish() 369 PUT_UINT32_BE( ctx->state[0], output, 0 ); in mbedtls_sha256_finish() 370 PUT_UINT32_BE( ctx->state[1], output, 4 ); in mbedtls_sha256_finish() 371 PUT_UINT32_BE( ctx->state[2], output, 8 ); in mbedtls_sha256_finish() 372 PUT_UINT32_BE( ctx->state[3], output, 12 ); in mbedtls_sha256_finish() 373 PUT_UINT32_BE( ctx->state[4], output, 16 ); in mbedtls_sha256_finish() 374 PUT_UINT32_BE( ctx->state[5], output, 20 ); in mbedtls_sha256_finish() [all …]
|
D | esp_sha1.c | 59 #ifndef PUT_UINT32_BE 60 #define PUT_UINT32_BE(n,b,i) \ macro 390 PUT_UINT32_BE( high, msglen, 0 ); in mbedtls_sha1_finish() 391 PUT_UINT32_BE( low, msglen, 4 ); in mbedtls_sha1_finish() 408 PUT_UINT32_BE( ctx->state[0], output, 0 ); in mbedtls_sha1_finish() 409 PUT_UINT32_BE( ctx->state[1], output, 4 ); in mbedtls_sha1_finish() 410 PUT_UINT32_BE( ctx->state[2], output, 8 ); in mbedtls_sha1_finish() 411 PUT_UINT32_BE( ctx->state[3], output, 12 ); in mbedtls_sha1_finish() 412 PUT_UINT32_BE( ctx->state[4], output, 16 ); in mbedtls_sha1_finish()
|
/hal_espressif-latest/components/mbedtls/port/sha/dma/ |
D | esp_sha1.c | 48 #ifndef PUT_UINT32_BE 49 #define PUT_UINT32_BE(n,b,i) \ macro 201 PUT_UINT32_BE( high, msglen, 0 ); in mbedtls_sha1_finish() 202 PUT_UINT32_BE( low, msglen, 4 ); in mbedtls_sha1_finish()
|
D | esp_sha256.c | 57 #ifndef PUT_UINT32_BE 58 #define PUT_UINT32_BE(n,b,i) \ macro 211 PUT_UINT32_BE( high, msglen, 0 ); in mbedtls_sha256_finish() 212 PUT_UINT32_BE( low, msglen, 4 ); in mbedtls_sha256_finish()
|
/hal_espressif-latest/components/mbedtls/port/sha/block/ |
D | esp_sha1.c | 49 #ifndef PUT_UINT32_BE 50 #define PUT_UINT32_BE(n,b,i) \ macro 201 PUT_UINT32_BE( high, msglen, 0 ); in mbedtls_sha1_finish() 202 PUT_UINT32_BE( low, msglen, 4 ); in mbedtls_sha1_finish()
|
D | esp_sha256.c | 58 #ifndef PUT_UINT32_BE 59 #define PUT_UINT32_BE(n,b,i) \ macro 220 PUT_UINT32_BE( high, msglen, 0 ); in mbedtls_sha256_finish() 221 PUT_UINT32_BE( low, msglen, 4 ); in mbedtls_sha256_finish()
|
/hal_espressif-latest/components/mbedtls/port/aes/ |
D | esp_aes_gcm.c | 124 #ifndef PUT_UINT32_BE 125 #define PUT_UINT32_BE(n,b,i) \ macro 245 PUT_UINT32_BE( zh >> 32, output, 0 ); in gcm_mult() 246 PUT_UINT32_BE( zh, output, 4 ); in gcm_mult() 247 PUT_UINT32_BE( zl >> 32, output, 8 ); in gcm_mult() 248 PUT_UINT32_BE( zl, output, 12 ); in gcm_mult()
|