Home
last modified time | relevance | path

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

/optee_os-3.20.0/lib/libmbedtls/mbedtls/library/
A Dgcm.c203 MBEDTLS_PUT_UINT32_BE( ctx->HH[8] >> 32, h, 0 ); in gcm_mult()
204 MBEDTLS_PUT_UINT32_BE( ctx->HH[8], h, 4 ); in gcm_mult()
205 MBEDTLS_PUT_UINT32_BE( ctx->HL[8] >> 32, h, 8 ); in gcm_mult()
206 MBEDTLS_PUT_UINT32_BE( ctx->HL[8], h, 12 ); in gcm_mult()
242 MBEDTLS_PUT_UINT32_BE( zh >> 32, output, 0 ); in gcm_mult()
243 MBEDTLS_PUT_UINT32_BE( zh, output, 4 ); in gcm_mult()
244 MBEDTLS_PUT_UINT32_BE( zl >> 32, output, 8 ); in gcm_mult()
245 MBEDTLS_PUT_UINT32_BE( zl, output, 12 ); in gcm_mult()
424 MBEDTLS_PUT_UINT32_BE( ( orig_add_len >> 32 ), work_buf, 0 ); in mbedtls_gcm_finish()
425 MBEDTLS_PUT_UINT32_BE( ( orig_add_len ), work_buf, 4 ); in mbedtls_gcm_finish()
[all …]
A Dsha256.c375 MBEDTLS_PUT_UINT32_BE( high, ctx->buffer, 56 ); in mbedtls_sha256_finish_ret()
376 MBEDTLS_PUT_UINT32_BE( low, ctx->buffer, 60 ); in mbedtls_sha256_finish_ret()
384 MBEDTLS_PUT_UINT32_BE( ctx->state[0], output, 0 ); in mbedtls_sha256_finish_ret()
385 MBEDTLS_PUT_UINT32_BE( ctx->state[1], output, 4 ); in mbedtls_sha256_finish_ret()
386 MBEDTLS_PUT_UINT32_BE( ctx->state[2], output, 8 ); in mbedtls_sha256_finish_ret()
387 MBEDTLS_PUT_UINT32_BE( ctx->state[3], output, 12 ); in mbedtls_sha256_finish_ret()
388 MBEDTLS_PUT_UINT32_BE( ctx->state[4], output, 16 ); in mbedtls_sha256_finish_ret()
389 MBEDTLS_PUT_UINT32_BE( ctx->state[5], output, 20 ); in mbedtls_sha256_finish_ret()
390 MBEDTLS_PUT_UINT32_BE( ctx->state[6], output, 24 ); in mbedtls_sha256_finish_ret()
393 MBEDTLS_PUT_UINT32_BE( ctx->state[7], output, 28 ); in mbedtls_sha256_finish_ret()
A Dxtea.c104 MBEDTLS_PUT_UINT32_BE( v0, output, 0 ); in mbedtls_xtea_crypt_ecb()
105 MBEDTLS_PUT_UINT32_BE( v1, output, 4 ); in mbedtls_xtea_crypt_ecb()
A Dcommon.h97 #ifndef MBEDTLS_PUT_UINT32_BE
98 #define MBEDTLS_PUT_UINT32_BE( n, data, offset ) \ macro
A Dsha1.c388 MBEDTLS_PUT_UINT32_BE( high, ctx->buffer, 56 ); in mbedtls_sha1_finish_ret()
389 MBEDTLS_PUT_UINT32_BE( low, ctx->buffer, 60 ); in mbedtls_sha1_finish_ret()
397 MBEDTLS_PUT_UINT32_BE( ctx->state[0], output, 0 ); in mbedtls_sha1_finish_ret()
398 MBEDTLS_PUT_UINT32_BE( ctx->state[1], output, 4 ); in mbedtls_sha1_finish_ret()
399 MBEDTLS_PUT_UINT32_BE( ctx->state[2], output, 8 ); in mbedtls_sha1_finish_ret()
400 MBEDTLS_PUT_UINT32_BE( ctx->state[3], output, 12 ); in mbedtls_sha1_finish_ret()
401 MBEDTLS_PUT_UINT32_BE( ctx->state[4], output, 16 ); in mbedtls_sha1_finish_ret()
A Ddes.c627 MBEDTLS_PUT_UINT32_BE( Y, output, 0 ); in mbedtls_des_crypt_ecb()
628 MBEDTLS_PUT_UINT32_BE( X, output, 4 ); in mbedtls_des_crypt_ecb()
733 MBEDTLS_PUT_UINT32_BE( Y, output, 0 ); in mbedtls_des3_crypt_ecb()
734 MBEDTLS_PUT_UINT32_BE( X, output, 4 ); in mbedtls_des3_crypt_ecb()
A Dcamellia.c532 MBEDTLS_PUT_UINT32_BE( X[2], output, 0 ); in mbedtls_camellia_crypt_ecb()
533 MBEDTLS_PUT_UINT32_BE( X[3], output, 4 ); in mbedtls_camellia_crypt_ecb()
534 MBEDTLS_PUT_UINT32_BE( X[0], output, 8 ); in mbedtls_camellia_crypt_ecb()
535 MBEDTLS_PUT_UINT32_BE( X[1], output, 12 ); in mbedtls_camellia_crypt_ecb()
A Dblowfish.c234 MBEDTLS_PUT_UINT32_BE( X0, output, 0 ); in mbedtls_blowfish_crypt_ecb()
235 MBEDTLS_PUT_UINT32_BE( X1, output, 4 ); in mbedtls_blowfish_crypt_ecb()
A Dssl_cookie.c171 MBEDTLS_PUT_UINT32_BE(t, *p, 0); in mbedtls_ssl_cookie_write()
A Decjpake.c169 MBEDTLS_PUT_UINT32_BE( len, *p, 0 ); in ecjpake_write_len_point()
209 MBEDTLS_PUT_UINT32_BE( id_len, p, 0 ); in ecjpake_hash()
A Dnist_kw.c207 MBEDTLS_PUT_UINT32_BE( ( in_len & 0xffffffff ), output, in mbedtls_nist_kw_wrap()
A Dctr_drbg.c155 MBEDTLS_PUT_UINT32_BE( data_len, p, 0); in block_cipher_df()
A Dssl_tls.c5495 MBEDTLS_PUT_UINT32_BE( session->verify_result, p, 0 ); in ssl_session_save()
5566 MBEDTLS_PUT_UINT32_BE( session->ticket_lifetime, p, 0 ); in ssl_session_save()
6392 MBEDTLS_PUT_UINT32_BE( session_len, p, 0 ); in mbedtls_ssl_context_save()
6435 MBEDTLS_PUT_UINT32_BE( ssl->badmac_seen, p, 0 ); in mbedtls_ssl_context_save()
A Dssl_srv.c2892 MBEDTLS_PUT_UINT32_BE( t, p, 0 ); in ssl_write_server_hello()
4703 MBEDTLS_PUT_UINT32_BE( lifetime, ssl->out_msg, 4 ); in ssl_write_new_session_ticket()
A Dssl_cli.c909 MBEDTLS_PUT_UINT32_BE( t, p, 0 ); in ssl_generate_random()

Completed in 53 milliseconds