Searched refs:PUT_UINT32_LE (Results 1 – 4 of 4) sorted by relevance
/net-tools-latest/mbedtls-2.4.0/library/ |
D | md4.c | 69 #ifndef PUT_UINT32_LE 70 #define PUT_UINT32_LE(n,b,i) \ macro 282 PUT_UINT32_LE( low, msglen, 0 ); in mbedtls_md4_finish() 283 PUT_UINT32_LE( high, msglen, 4 ); in mbedtls_md4_finish() 291 PUT_UINT32_LE( ctx->state[0], output, 0 ); in mbedtls_md4_finish() 292 PUT_UINT32_LE( ctx->state[1], output, 4 ); in mbedtls_md4_finish() 293 PUT_UINT32_LE( ctx->state[2], output, 8 ); in mbedtls_md4_finish() 294 PUT_UINT32_LE( ctx->state[3], output, 12 ); in mbedtls_md4_finish()
|
D | md5.c | 68 #ifndef PUT_UINT32_LE 69 #define PUT_UINT32_LE(n,b,i) \ macro 299 PUT_UINT32_LE( low, msglen, 0 ); in mbedtls_md5_finish() 300 PUT_UINT32_LE( high, msglen, 4 ); in mbedtls_md5_finish() 308 PUT_UINT32_LE( ctx->state[0], output, 0 ); in mbedtls_md5_finish() 309 PUT_UINT32_LE( ctx->state[1], output, 4 ); in mbedtls_md5_finish() 310 PUT_UINT32_LE( ctx->state[2], output, 8 ); in mbedtls_md5_finish() 311 PUT_UINT32_LE( ctx->state[3], output, 12 ); in mbedtls_md5_finish()
|
D | ripemd160.c | 62 #ifndef PUT_UINT32_LE 63 #define PUT_UINT32_LE(n,b,i) \ macro 357 PUT_UINT32_LE( low, msglen, 0 ); in mbedtls_ripemd160_finish() 358 PUT_UINT32_LE( high, msglen, 4 ); in mbedtls_ripemd160_finish() 366 PUT_UINT32_LE( ctx->state[0], output, 0 ); in mbedtls_ripemd160_finish() 367 PUT_UINT32_LE( ctx->state[1], output, 4 ); in mbedtls_ripemd160_finish() 368 PUT_UINT32_LE( ctx->state[2], output, 8 ); in mbedtls_ripemd160_finish() 369 PUT_UINT32_LE( ctx->state[3], output, 12 ); in mbedtls_ripemd160_finish() 370 PUT_UINT32_LE( ctx->state[4], output, 16 ); in mbedtls_ripemd160_finish()
|
D | aes.c | 75 #ifndef PUT_UINT32_LE 76 #define PUT_UINT32_LE(n,b,i) \ macro 759 PUT_UINT32_LE( X0, output, 0 ); in mbedtls_aes_encrypt() 760 PUT_UINT32_LE( X1, output, 4 ); in mbedtls_aes_encrypt() 761 PUT_UINT32_LE( X2, output, 8 ); in mbedtls_aes_encrypt() 762 PUT_UINT32_LE( X3, output, 12 ); in mbedtls_aes_encrypt() 816 PUT_UINT32_LE( X0, output, 0 ); in mbedtls_aes_decrypt() 817 PUT_UINT32_LE( X1, output, 4 ); in mbedtls_aes_decrypt() 818 PUT_UINT32_LE( X2, output, 8 ); in mbedtls_aes_decrypt() 819 PUT_UINT32_LE( X3, output, 12 ); in mbedtls_aes_decrypt()
|