Home
last modified time | relevance | path

Searched refs:update_len (Results 1 – 6 of 6) sorted by relevance

/trusted-services/components/service/crypto/test/service/extension/mac/
A Dmac_service_scenarios.cpp87 size_t update_len = (bytes_left < max_payload) ? bytes_left : max_payload; in signAndVerify() local
90 &m_ref_input[input_byte_count], update_len); in signAndVerify()
93 input_byte_count += update_len; in signAndVerify()
112 size_t update_len = (bytes_left < max_payload) ? bytes_left : max_payload; in signAndVerify() local
115 &m_ref_input[input_byte_count], update_len); in signAndVerify()
118 input_byte_count += update_len; in signAndVerify()
/trusted-services/components/service/crypto/test/service/extension/cipher/
A Dcipher_service_scenarios.cpp98 size_t update_len = (bytes_left < max_payload) ? bytes_left : max_payload; in encryptDecryptRoundtrip() local
101 &m_ref_plaintext[input_byte_count], update_len, in encryptDecryptRoundtrip()
105 input_byte_count += update_len; in encryptDecryptRoundtrip()
137 size_t update_len = (bytes_left < max_payload) ? bytes_left : max_payload; in encryptDecryptRoundtrip() local
140 &ciphertext[input_byte_count], update_len, in encryptDecryptRoundtrip()
144 input_byte_count += update_len; in encryptDecryptRoundtrip()
/trusted-services/components/service/crypto/client/psa/
A Dpsa_aead.c150 size_t update_len = (bytes_remaining < max_update_size) ? in multi_aead_update_ad() local
155 &input[bytes_input], update_len); in multi_aead_update_ad()
159 bytes_input += update_len; in multi_aead_update_ad()
194 size_t update_len = (bytes_remaining < max_update_size) ? in multi_aead_update() local
199 &input[bytes_input], update_len, in multi_aead_update()
204 bytes_input += update_len; in multi_aead_update()
A Dpsa_hash.c118 size_t update_len = (bytes_remaining < max_update_size) ? in multi_hash_update() local
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.c96 size_t update_len = (bytes_remaining < max_update_size) ? in multi_mac_update() local
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()
A Dpsa_cipher.c124 size_t update_len = (bytes_remaining < max_update_size) ? in multi_cipher_update() local
129 &input[bytes_input], update_len, in multi_cipher_update()
135 bytes_input += update_len; in multi_cipher_update()

Completed in 16 milliseconds