Searched refs:input_copy (Results 1 – 3 of 3) sorted by relevance
/mbedtls-latest/library/ |
D | psa_crypto_invasive.h | 77 uint8_t *input_copy, size_t input_copy_len);
|
D | psa_crypto.c | 202 #define LOCAL_INPUT_ALLOC(input, length, input_copy) \ argument 208 input_copy = LOCAL_INPUT_COPY_OF_##input.buffer; 216 #define LOCAL_INPUT_FREE(input, input_copy) \ argument 217 input_copy = NULL; \ 275 #define LOCAL_INPUT_ALLOC(input, length, input_copy) \ argument 276 input_copy = input; 277 #define LOCAL_INPUT_FREE(input, input_copy) \ argument 278 input_copy = NULL; 9106 uint8_t *input_copy, size_t input_copy_len) argument 9119 memcpy(input_copy, input, input_len);
|
/mbedtls-latest/docs/architecture/ |
D | psa-shared-memory.md | 520 * `psa_crypto_copy_input(const uint8_t *input, size_t input_length, uint8_t *input_copy, size_t inp… 575 …input_copy)`, which tries to allocate an input using `psa_crypto_local_input_alloc()`. On failure,… 576 * `LOCAL_INPUT_FREE(input, input_copy)`, which frees the input copy using `psa_crypto_local_input_f…
|