psa_util: add variable casting in convert_raw_to_der_single_int()
Signed-off-by: Valerio Setti <valerio.setti@nordicsemi.no>
This commit is contained in:
parent
86bae52c55
commit
a7b83a04ee
1 changed files with 1 additions and 1 deletions
|
@ -364,7 +364,7 @@ static int convert_raw_to_der_single_int(const unsigned char *raw_buf, size_t ra
|
||||||
unsigned char *der_buf_end)
|
unsigned char *der_buf_end)
|
||||||
{
|
{
|
||||||
unsigned char *p = der_buf_end;
|
unsigned char *p = der_buf_end;
|
||||||
int len = raw_len;
|
int len = (int) raw_len;
|
||||||
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
||||||
|
|
||||||
/* Copy the raw coordinate to the end of der_buf. */
|
/* Copy the raw coordinate to the end of der_buf. */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue