@@ -73,7 +73,7 @@ static void pk_write_check_common(char *key_file, int is_public_key, int is_der)
73
73
unsigned char *buf = NULL;
74
74
unsigned char *check_buf = NULL;
75
75
unsigned char *start_buf;
76
- size_t buf_len, check_buf_len, wrong_buf_len = 1 ;
76
+ size_t buf_len, check_buf_len;
77
77
int expected_result;
78
78
#if defined(MBEDTLS_USE_PSA_CRYPTO)
79
79
mbedtls_svc_key_id_t opaque_id = MBEDTLS_SVC_KEY_ID_INIT;
@@ -118,10 +118,10 @@ static void pk_write_check_common(char *key_file, int is_public_key, int is_der)
118
118
}
119
119
/* Intentionally pass a wrong size for the provided output buffer and check
120
120
* that the writing functions fails as expected. */
121
- TEST_EQUAL(pk_write_any_key(&key, &start_buf, &wrong_buf_len, is_public_key,
122
- is_der), expected_result);
123
- TEST_EQUAL(pk_write_any_key(&key, &start_buf, &buf_len, is_public_key,
124
- is_der), 0);
121
+ for (size_t i = 1; i < buf_len; i++) {
122
+ TEST_EQUAL(pk_write_any_key(&key, &start_buf, &i, is_public_key,
123
+ is_der), expected_result);
124
+ }
125
125
TEST_EQUAL(pk_write_any_key(&key, &start_buf, &buf_len, is_public_key,
126
126
is_der), 0);
127
127
@@ -142,8 +142,10 @@ static void pk_write_check_common(char *key_file, int is_public_key, int is_der)
142
142
buf_len = check_buf_len;
143
143
/* Intentionally pass a wrong size for the provided output buffer and check
144
144
* that the writing functions fails as expected. */
145
- TEST_EQUAL(pk_write_any_key(&key, &start_buf, &wrong_buf_len, is_public_key,
146
- is_der), expected_result);
145
+ for (size_t i = 1; i < buf_len; i++) {
146
+ TEST_EQUAL(pk_write_any_key(&key, &start_buf, &i, is_public_key,
147
+ is_der), expected_result);
148
+ }
147
149
TEST_EQUAL(pk_write_any_key(&key, &start_buf, &buf_len, is_public_key,
148
150
is_der), 0);
149
151
0 commit comments