Lines Matching refs:output_len
7400 size_t *output_len) in psa_pbkdf2_hmac_set_password() argument
7405 PSA_HMAC_MAX_HASH_BLOCK_SIZE, output_len); in psa_pbkdf2_hmac_set_password()
7409 *output_len = PSA_HASH_BLOCK_LENGTH(hash_alg); in psa_pbkdf2_hmac_set_password()
7418 size_t *output_len) in psa_pbkdf2_cmac_set_password() argument
7437 output_len); in psa_pbkdf2_cmac_set_password()
7440 *output_len = PSA_MAC_LENGTH(PSA_KEY_TYPE_AES, 128U, PSA_ALG_CMAC); in psa_pbkdf2_cmac_set_password()
9288 void (*psa_output_pre_copy_hook)(const uint8_t *output, size_t output_len) = NULL;
9289 void (*psa_output_post_copy_hook)(const uint8_t *output, size_t output_len) = NULL;
9345 uint8_t *output, size_t output_len) in psa_crypto_copy_output() argument
9347 if (output_len < output_copy_len) { in psa_crypto_copy_output()
9353 psa_output_pre_copy_hook(output, output_len); in psa_crypto_copy_output()
9363 psa_output_post_copy_hook(output, output_len); in psa_crypto_copy_output()
9413 psa_status_t psa_crypto_local_output_alloc(uint8_t *output, size_t output_len, in psa_crypto_local_output_alloc() argument
9418 if (output_len == 0) { in psa_crypto_local_output_alloc()
9421 local_output->buffer = mbedtls_calloc(output_len, 1); in psa_crypto_local_output_alloc()
9427 local_output->length = output_len; in psa_crypto_local_output_alloc()