summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com>2023-06-15 08:36:35 +0200
committerPauli <pauli@openssl.org>2023-06-18 16:53:09 +1000
commit6ea4da6e4d03cd9591805e166cfd94a374c33628 (patch)
treeb96d170dea13d0875147923b0df48c18072af842 /test
parent6c0ecc2bce64cc86948a51f80f832b5e48a9ebea (diff)
Fix new typos found by codespell
Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21210)
Diffstat (limited to 'test')
-rw-r--r--test/cmactest.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/test/cmactest.c b/test/cmactest.c
index 81b977ac08..6361329612 100644
--- a/test/cmactest.c
+++ b/test/cmactest.c
@@ -77,7 +77,7 @@ static struct test_st {
0x0b, 0x0c, 0x0d, 0x0e, 0x0f
},
16,
- /* fullfill data to 3072 bytes with below string */
+ /* repeat the string below until filling 3072 bytes */
"#abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789#",
3072,
"35da8a02a7afce90e5b711308cee2dee"
@@ -90,7 +90,7 @@ static struct test_st {
0x16, 0x17
},
24,
- /* fullfill data to 4095 bytes with below string */
+ /* repeat the string below until filling 4095 bytes */
"#abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789#",
4095,
"59053f4e81f3593610f987adb547c5b2"
@@ -103,7 +103,7 @@ static struct test_st {
0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f
},
32,
- /* fullfill data to 2560 bytes with below string */
+ /* repeat the string below until filling 2560 bytes */
"#abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789#",
2560,
"9c6cf85f7f4baca99725764a0df973a9"
@@ -116,7 +116,7 @@ static struct test_st {
0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f
},
24,
- /* fullfill data to 2048 bytes with below string */
+ /* repeat the string below until filling 2048 bytes */
"#abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789#",
2048,
"2c2fccc7fcc5d98a"
@@ -128,7 +128,7 @@ static struct test_st {
0x0b, 0x0c, 0x0d, 0x0e, 0x0f
},
16,
- /* fullfill data to 2049 bytes with below string */
+ /* repeat the string below until filling 2049 bytes */
"#abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789#",
2049,
"c9a9cbc82a3b2d96074e386fce1216f2"
@@ -177,19 +177,19 @@ static int test_cmac_run(void)
ctx = CMAC_CTX_new();
- /* Construct input data, fullfill data to match data length */
+ /* Construct input data, fill repeatedly until reaching data length */
for (case_idx = 0; case_idx < OSSL_NELEM(test); case_idx++) {
size_t str_len = strlen((char *)test[case_idx].data);
- size_t fullfill_len = test[case_idx].data_len - str_len;
- size_t fullfill_idx = str_len;
- while (fullfill_len > 0) {
- if (fullfill_len > str_len) {
- memcpy(&test[case_idx].data[fullfill_idx], test[case_idx].data, str_len);
- fullfill_len -= str_len;
- fullfill_idx += str_len;
+ size_t fill_len = test[case_idx].data_len - str_len;
+ size_t fill_idx = str_len;
+ while (fill_len > 0) {
+ if (fill_len > str_len) {
+ memcpy(&test[case_idx].data[fill_idx], test[case_idx].data, str_len);
+ fill_len -= str_len;
+ fill_idx += str_len;
} else {
- memcpy(&test[case_idx].data[fullfill_idx], test[case_idx].data, fullfill_len);
- fullfill_len = 0;
+ memcpy(&test[case_idx].data[fill_idx], test[case_idx].data, fill_len);
+ fill_len = 0;
}
}
}