Searched refs:output_copy (Results 1 – 3 of 3) sorted by relevance
/mbedtls-latest/library/ |
D | psa_crypto_invasive.h | 79 psa_status_t psa_crypto_copy_output(const uint8_t *output_copy, size_t output_copy_len,
|
D | psa_crypto.c | 244 #define LOCAL_OUTPUT_ALLOC(output, length, output_copy) \ argument 250 output_copy = LOCAL_OUTPUT_COPY_OF_##output.buffer; 260 #define LOCAL_OUTPUT_FREE(output, output_copy) \ argument 261 output_copy = NULL; \ 281 #define LOCAL_OUTPUT_ALLOC(output, length, output_copy) \ argument 282 output_copy = output; 283 #define LOCAL_OUTPUT_FREE(output, output_copy) \ argument 284 output_copy = NULL; 9144 psa_status_t psa_crypto_copy_output(const uint8_t *output_copy, size_t output_copy_len, argument 9158 memcpy(output, output_copy, output_copy_len);
|
/mbedtls-latest/docs/architecture/ |
D | psa-shared-memory.md | 521 * `psa_crypto_copy_output(const uint8_t *output_copy, size_t output_copy_length, uint8_t *output, s… 581 * `LOCAL_OUTPUT_ALLOC(output, output_size, output_copy)`, analogous to `LOCAL_INPUT_ALLOC()` for ou… 582 * `LOCAL_OUTPUT_FREE(output, output_copy)`, analogous to `LOCAL_INPUT_FREE()` for outputs. If the `…
|