mirror of
https://github.com/cuberite/polarssl.git
synced 2025-09-10 15:50:47 -04:00
Do not copy the content to the local output buffer with allocation
Signed-off-by: Gabor Mezei <gabor.mezei@arm.com>
This commit is contained in:
parent
7f4b7dd382
commit
ff783e0bda
@ -3800,7 +3800,7 @@ psa_status_t psa_cipher_update(psa_cipher_operation_t *operation,
|
|||||||
}
|
}
|
||||||
|
|
||||||
LOCAL_INPUT_ALLOC(input_external, input_length, input);
|
LOCAL_INPUT_ALLOC(input_external, input_length, input);
|
||||||
LOCAL_OUTPUT_ALLOC_WITH_COPY(output_external, output_size, output);
|
LOCAL_OUTPUT_ALLOC(output_external, output_size, output);
|
||||||
|
|
||||||
status = psa_driver_wrapper_cipher_update(operation,
|
status = psa_driver_wrapper_cipher_update(operation,
|
||||||
input,
|
input,
|
||||||
@ -3839,7 +3839,7 @@ psa_status_t psa_cipher_finish(psa_cipher_operation_t *operation,
|
|||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
LOCAL_OUTPUT_ALLOC_WITH_COPY(output_external, output_size, output);
|
LOCAL_OUTPUT_ALLOC(output_external, output_size, output);
|
||||||
|
|
||||||
status = psa_driver_wrapper_cipher_finish(operation,
|
status = psa_driver_wrapper_cipher_finish(operation,
|
||||||
output,
|
output,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user