mirror of
https://github.com/cuberite/polarssl.git
synced 2025-09-29 08:24:11 -04:00
asymmetric_encrypt: check output length only if return code is PSA_SUCCESS.
Signed-off-by: Stephan Koch <koch@oberon.ch>
This commit is contained in:
parent
f78a10052c
commit
10c0f770ce
@ -7853,7 +7853,9 @@ void asymmetric_encrypt(int key_type_arg,
|
|||||||
output, output_size,
|
output, output_size,
|
||||||
&output_length);
|
&output_length);
|
||||||
TEST_EQUAL(actual_status, expected_status);
|
TEST_EQUAL(actual_status, expected_status);
|
||||||
TEST_EQUAL(output_length, expected_output_length);
|
if (actual_status == PSA_SUCCESS) {
|
||||||
|
TEST_EQUAL(output_length, expected_output_length);
|
||||||
|
}
|
||||||
|
|
||||||
/* If the label is empty, the test framework puts a non-null pointer
|
/* If the label is empty, the test framework puts a non-null pointer
|
||||||
* in label->x. Test that a null pointer works as well. */
|
* in label->x. Test that a null pointer works as well. */
|
||||||
@ -7868,7 +7870,9 @@ void asymmetric_encrypt(int key_type_arg,
|
|||||||
output, output_size,
|
output, output_size,
|
||||||
&output_length);
|
&output_length);
|
||||||
TEST_EQUAL(actual_status, expected_status);
|
TEST_EQUAL(actual_status, expected_status);
|
||||||
TEST_EQUAL(output_length, expected_output_length);
|
if (actual_status == PSA_SUCCESS) {
|
||||||
|
TEST_EQUAL(output_length, expected_output_length);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
exit:
|
exit:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user