Searched refs:update_len (Results 1 – 6 of 6) sorted by relevance
| /trusted-services/components/service/crypto/test/service/extension/mac/ |
| A D | mac_service_scenarios.cpp | 87 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 D | cipher_service_scenarios.cpp | 98 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 D | psa_aead.c | 150 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 D | psa_hash.c | 118 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 D | psa_mac.c | 96 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 D | psa_cipher.c | 124 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