mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-01-30 06:33:06 +00:00
Remove MBEDTLS_ECP_MAX_MPI_BYTES macro
Remove MBEDTLS_ECP_MAX_MPI_BYTES macro as it's not needed anymore.It was added when memcpy was being used but now that mbedtls_mpi_write_binary() is being used it can handle copying a large buffer filled with leading zeros into a smaller buffer. Signed-off-by: Waleed Elmelegy <waleed.elmelegy@arm.com>
This commit is contained in:
parent
e0dac22cf1
commit
db0c4a4b2c
@ -8184,7 +8184,7 @@ psa_status_t psa_generate_key_iop_complete(
|
||||
{
|
||||
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
||||
psa_status_t status;
|
||||
uint8_t key_data[MBEDTLS_ECP_MAX_MPI_BYTES] = { 0 };
|
||||
uint8_t key_data[MBEDTLS_ECP_MAX_BYTES] = { 0 };
|
||||
size_t key_len = 0;
|
||||
|
||||
if (operation->id == 0 || operation->error_occurred) {
|
||||
|
@ -345,8 +345,6 @@ mbedtls_ecp_group;
|
||||
|
||||
#define MBEDTLS_ECP_MAX_BYTES ((MBEDTLS_ECP_MAX_BITS + 7) / 8)
|
||||
#define MBEDTLS_ECP_MAX_PT_LEN (2 * MBEDTLS_ECP_MAX_BYTES + 1)
|
||||
#define MBEDTLS_ECP_MAX_MPI_BYTES ((MBEDTLS_ECP_MAX_BYTES + sizeof(mbedtls_mpi_uint)) & \
|
||||
~(sizeof(mbedtls_mpi_uint)-1))
|
||||
|
||||
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user