Searched refs:local_output (Results 1 – 3 of 3) sorted by relevance
| /optee_os/lib/libmbedtls/mbedtls/library/ |
| H A D | ccm.c | 371 unsigned char local_output[16]; in mbedtls_ccm_update() local 432 ret = mbedtls_ccm_crypt(ctx, offset, use_len, input, local_output); in mbedtls_ccm_update() 437 mbedtls_xor(ctx->y + offset, ctx->y + offset, local_output, use_len); in mbedtls_ccm_update() 439 memcpy(output, local_output, use_len); in mbedtls_ccm_update() 468 mbedtls_platform_zeroize(local_output, 16); in mbedtls_ccm_update()
|
| H A D | psa_crypto_core.h | 968 psa_crypto_local_output_t *local_output); 981 psa_status_t psa_crypto_local_output_free(psa_crypto_local_output_t *local_output);
|
| H A D | psa_crypto.c | 9434 psa_crypto_local_output_t *local_output) in psa_crypto_local_output_alloc() argument 9436 *local_output = PSA_CRYPTO_LOCAL_OUTPUT_INIT; in psa_crypto_local_output_alloc() 9441 local_output->buffer = mbedtls_calloc(output_len, 1); in psa_crypto_local_output_alloc() 9442 if (local_output->buffer == NULL) { in psa_crypto_local_output_alloc() 9447 local_output->length = output_len; in psa_crypto_local_output_alloc() 9448 local_output->original = output; in psa_crypto_local_output_alloc() 9453 psa_status_t psa_crypto_local_output_free(psa_crypto_local_output_t *local_output) in psa_crypto_local_output_free() argument 9457 if (local_output->buffer == NULL) { in psa_crypto_local_output_free() 9458 local_output->length = 0; in psa_crypto_local_output_free() 9461 if (local_output->original == NULL) { in psa_crypto_local_output_free() [all …]
|