Home
last modified time | relevance | path

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

/net-tools-2.7.6/mbedtls-2.4.0/library/
Dsha512.c81 #ifndef PUT_UINT64_BE
82 #define PUT_UINT64_BE(n,b,i) \ macro
334 PUT_UINT64_BE( high, msglen, 0 ); in mbedtls_sha512_finish()
335 PUT_UINT64_BE( low, msglen, 8 ); in mbedtls_sha512_finish()
343 PUT_UINT64_BE( ctx->state[0], output, 0 ); in mbedtls_sha512_finish()
344 PUT_UINT64_BE( ctx->state[1], output, 8 ); in mbedtls_sha512_finish()
345 PUT_UINT64_BE( ctx->state[2], output, 16 ); in mbedtls_sha512_finish()
346 PUT_UINT64_BE( ctx->state[3], output, 24 ); in mbedtls_sha512_finish()
347 PUT_UINT64_BE( ctx->state[4], output, 32 ); in mbedtls_sha512_finish()
348 PUT_UINT64_BE( ctx->state[5], output, 40 ); in mbedtls_sha512_finish()
[all …]