Home
last modified time | relevance | path

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

/trusted-services/components/service/crypto/client/psa/
A Dpsa_hash.c113 size_t bytes_processed = 0; in multi_hash_update() local
115 while (bytes_processed < input_length) { in multi_hash_update()
117 size_t bytes_remaining = input_length - bytes_processed; in multi_hash_update()
122 psa_status = psa_hash_update(operation, &input[bytes_processed], update_len); in multi_hash_update()
130 bytes_processed += update_len; in multi_hash_update()
A Dpsa_mac.c82 size_t bytes_processed = 0; in multi_mac_update() local
93 while (bytes_processed < input_length) { in multi_mac_update()
95 size_t bytes_remaining = input_length - bytes_processed; in multi_mac_update()
100 psa_status = psa_mac_update(operation, &input[bytes_processed], update_len); in multi_mac_update()
108 bytes_processed += update_len; in multi_mac_update()

Completed in 6 milliseconds