Lines Matching defs:output_len
7146 size_t *output_len)
7151 PSA_HMAC_MAX_HASH_BLOCK_SIZE, output_len);
7155 *output_len = PSA_HASH_BLOCK_LENGTH(hash_alg);
7164 size_t *output_len)
7183 output_len);
7186 *output_len = PSA_MAC_LENGTH(PSA_KEY_TYPE_AES, 128U, PSA_ALG_CMAC);
8991 void (*psa_output_pre_copy_hook)(const uint8_t *output, size_t output_len) = NULL;
8992 void (*psa_output_post_copy_hook)(const uint8_t *output, size_t output_len) = NULL;
9039 * \param[out] output_len Length of the user-supplied output buffer.
9048 uint8_t *output, size_t output_len)
9050 if (output_len < output_copy_len) {
9056 psa_output_pre_copy_hook(output, output_len);
9066 psa_output_post_copy_hook(output, output_len);
9116 psa_status_t psa_crypto_local_output_alloc(uint8_t *output, size_t output_len,
9121 if (output_len == 0) {
9124 local_output->buffer = mbedtls_calloc(output_len, 1);
9130 local_output->length = output_len;