Searched refs:crypto_mac_update (Results 1 – 9 of 9) sorted by relevance
/optee_os-3.20.0/core/kernel/ |
A D | huk_subkey.c | 15 return crypto_mac_update(ctx, (const void *)&usage, sizeof(usage)); in mac_usage() 50 res = crypto_mac_update(ctx, chip_id, sizeof(chip_id)); in huk_compat() 53 return crypto_mac_update(ctx, ssk_str, sizeof(ssk_str)); in huk_compat() 95 res = crypto_mac_update(ctx, const_data, const_data_len); in huk_subkey_derive()
|
/optee_os-3.20.0/core/tee/ |
A D | tee_cryp_hkdf.c | 51 res = crypto_mac_update(ctx, ikm, ikm_len); in hkdf_extract() 121 res = crypto_mac_update(ctx, tn, tn_len); in hkdf_expand() 124 res = crypto_mac_update(ctx, info, info_len); in hkdf_expand() 127 res = crypto_mac_update(ctx, &c, 1); in hkdf_expand()
|
A D | tee_cryp_pbkdf2.c | 43 res = crypto_mac_update(h->ctx, p->salt, in pbkdf2_f() 51 res = crypto_mac_update(h->ctx, (uint8_t *)&be_index, in pbkdf2_f() 56 res = crypto_mac_update(h->ctx, u, h->hash_len); in pbkdf2_f()
|
A D | tee_fs_key_manager.c | 59 res = crypto_mac_update(ctx, message, message_size); in do_hmac()
|
A D | tee_rpmb_fs.c | 390 res = crypto_mac_update(ctx, datafrms[i].data, in tee_rpmb_mac_calc() 723 res = crypto_mac_update(ctx, localfrm.data, in tee_rpmb_data_cpy_mac_calc() 756 res = crypto_mac_update(ctx, lastfrm->data, RPMB_MAC_PROTECT_DATA_SIZE); in tee_rpmb_data_cpy_mac_calc()
|
A D | tee_svc_cryp.c | 2866 res = crypto_mac_update(cs->ctx, chunk, chunk_size); in syscall_hash_update() 2951 res = crypto_mac_update(cs->ctx, chunk, chunk_size); in syscall_hash_final()
|
/optee_os-3.20.0/core/drivers/crypto/se050/glue/ |
A D | user.c | 31 if (crypto_mac_update(mac, msg, len)) in glue_mac_update() 48 if (crypto_mac_update(mac, msg, msg_len)) in glue_mac_one_go()
|
/optee_os-3.20.0/core/include/crypto/ |
A D | crypto.h | 55 TEE_Result crypto_mac_update(void *ctx, const uint8_t *data, size_t len);
|
/optee_os-3.20.0/core/crypto/ |
A D | crypto.c | 322 TEE_Result crypto_mac_update(void *ctx, const uint8_t *data, size_t len) in crypto_mac_update() function
|
Completed in 21 milliseconds