|
asn1_frame_size = |
|
mbedtls_asn1_write_len_and_tag(p, start, integer_length, MBEDTLS_ASN1_INTEGER); |
|
if (asn1_frame_size < 0) { |
|
return asn1_frame_size;//TC4 mbedtls_asn1_write_len_and_tag failed. |
|
} |
|
|
|
return asn1_frame_size; |
Maybe could be:
return mbedtls_asn1_write_len_and_tag(p, start, integer_length, MBEDTLS_ASN1_INTEGER);
TF-PSA-Crypto/utilities/asn1write.c
Lines 457 to 463 in e5fdb3f
Maybe could be:
return mbedtls_asn1_write_len_and_tag(p, start, integer_length, MBEDTLS_ASN1_INTEGER);