Searched refs:MBEDTLS_PUT_UINT32_LE (Results 1 – 9 of 9) sorted by relevance
/mbedtls-3.4.0/library/ |
D | psa_crypto_storage.c | 253 MBEDTLS_PUT_UINT32_LE( 0, storage_format->version, 0 ); in psa_format_key_data_for_storage() 254 MBEDTLS_PUT_UINT32_LE( attr->lifetime, storage_format->lifetime, 0 ); in psa_format_key_data_for_storage() 257 MBEDTLS_PUT_UINT32_LE( attr->policy.usage, storage_format->policy, 0 ); in psa_format_key_data_for_storage() 258 MBEDTLS_PUT_UINT32_LE( attr->policy.alg, storage_format->policy, sizeof( uint32_t ) ); in psa_format_key_data_for_storage() 259 MBEDTLS_PUT_UINT32_LE( attr->policy.alg2, storage_format->policy, 2 * sizeof( uint32_t ) ); in psa_format_key_data_for_storage() 260 MBEDTLS_PUT_UINT32_LE( data_length, storage_format->data_len, 0 ); in psa_format_key_data_for_storage()
|
D | md5.c | 303 MBEDTLS_PUT_UINT32_LE( low, ctx->buffer, 56 ); in mbedtls_md5_finish() 304 MBEDTLS_PUT_UINT32_LE( high, ctx->buffer, 60 ); in mbedtls_md5_finish() 312 MBEDTLS_PUT_UINT32_LE( ctx->state[0], output, 0 ); in mbedtls_md5_finish() 313 MBEDTLS_PUT_UINT32_LE( ctx->state[1], output, 4 ); in mbedtls_md5_finish() 314 MBEDTLS_PUT_UINT32_LE( ctx->state[2], output, 8 ); in mbedtls_md5_finish() 315 MBEDTLS_PUT_UINT32_LE( ctx->state[3], output, 12 ); in mbedtls_md5_finish()
|
D | poly1305.c | 235 MBEDTLS_PUT_UINT32_LE( acc0, mac, 0 ); in poly1305_compute_mac() 236 MBEDTLS_PUT_UINT32_LE( acc1, mac, 4 ); in poly1305_compute_mac() 237 MBEDTLS_PUT_UINT32_LE( acc2, mac, 8 ); in poly1305_compute_mac() 238 MBEDTLS_PUT_UINT32_LE( acc3, mac, 12 ); in poly1305_compute_mac()
|
D | ripemd160.c | 350 MBEDTLS_PUT_UINT32_LE( low, msglen, 0 ); in mbedtls_ripemd160_finish() 351 MBEDTLS_PUT_UINT32_LE( high, msglen, 4 ); in mbedtls_ripemd160_finish() 364 MBEDTLS_PUT_UINT32_LE( ctx->state[0], output, 0 ); in mbedtls_ripemd160_finish() 365 MBEDTLS_PUT_UINT32_LE( ctx->state[1], output, 4 ); in mbedtls_ripemd160_finish() 366 MBEDTLS_PUT_UINT32_LE( ctx->state[2], output, 8 ); in mbedtls_ripemd160_finish() 367 MBEDTLS_PUT_UINT32_LE( ctx->state[3], output, 12 ); in mbedtls_ripemd160_finish() 368 MBEDTLS_PUT_UINT32_LE( ctx->state[4], output, 16 ); in mbedtls_ripemd160_finish()
|
D | psa_its_file.c | 198 MBEDTLS_PUT_UINT32_LE( data_length, header.size, 0 ); in psa_its_set() 199 MBEDTLS_PUT_UINT32_LE( create_flags, header.flags, 0 ); in psa_its_set()
|
D | common.h | 190 #ifndef MBEDTLS_PUT_UINT32_LE 191 #define MBEDTLS_PUT_UINT32_LE( n, data, offset ) \ macro
|
D | aria.c | 551 MBEDTLS_PUT_UINT32_LE( a, output, 0 ); in mbedtls_aria_crypt_ecb() 552 MBEDTLS_PUT_UINT32_LE( b, output, 4 ); in mbedtls_aria_crypt_ecb() 553 MBEDTLS_PUT_UINT32_LE( c, output, 8 ); in mbedtls_aria_crypt_ecb() 554 MBEDTLS_PUT_UINT32_LE( d, output, 12 ); in mbedtls_aria_crypt_ecb()
|
D | aes.c | 861 MBEDTLS_PUT_UINT32_LE( t.X[0], output, 0 ); in mbedtls_internal_aes_encrypt() 862 MBEDTLS_PUT_UINT32_LE( t.X[1], output, 4 ); in mbedtls_internal_aes_encrypt() 863 MBEDTLS_PUT_UINT32_LE( t.X[2], output, 8 ); in mbedtls_internal_aes_encrypt() 864 MBEDTLS_PUT_UINT32_LE( t.X[3], output, 12 ); in mbedtls_internal_aes_encrypt() 925 MBEDTLS_PUT_UINT32_LE( t.X[0], output, 0 ); in mbedtls_internal_aes_decrypt() 926 MBEDTLS_PUT_UINT32_LE( t.X[1], output, 4 ); in mbedtls_internal_aes_decrypt() 927 MBEDTLS_PUT_UINT32_LE( t.X[2], output, 8 ); in mbedtls_internal_aes_decrypt() 928 MBEDTLS_PUT_UINT32_LE( t.X[3], output, 12 ); in mbedtls_internal_aes_decrypt()
|
D | chacha20.c | 149 MBEDTLS_PUT_UINT32_LE(working_state[i], keystream, offset); in chacha20_block()
|