test_cbc: fix indentation

Spaces were used instead of tabs. Fix up by using Lindent from
Linux kernel since we use same coding style.

Change-Id: Iece925ae40cad342fde1e33c240cb2ac23a15a9b
Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
This commit is contained in:
Andrew Boie 2016-08-26 10:29:52 -07:00 committed by Anas Nashif
commit 6d2ab0ea11

View file

@ -73,10 +73,12 @@ const uint8_t key[16] = {
0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6, 0xab, 0xf7, 0x15, 0x88,
0x09, 0xcf, 0x4f, 0x3c
};
const uint8_t iv[16] = {
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b,
0x0c, 0x0d, 0x0e, 0x0f
};
const uint8_t plaintext[64] = {
0x6b, 0xc1, 0xbe, 0xe2, 0x2e, 0x40, 0x9f, 0x96, 0xe9, 0x3d, 0x7e, 0x11,
0x73, 0x93, 0x17, 0x2a, 0xae, 0x2d, 0x8a, 0x57, 0x1e, 0x03, 0xac, 0x9c,
@ -85,6 +87,7 @@ const uint8_t plaintext[64] = {
0xf6, 0x9f, 0x24, 0x45, 0xdf, 0x4f, 0x9b, 0x17, 0xad, 0x2b, 0x41, 0x7b,
0xe6, 0x6c, 0x37, 0x10
};
const uint8_t ciphertext[80] = {
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b,
0x0c, 0x0d, 0x0e, 0x0f, 0x76, 0x49, 0xab, 0xac, 0x81, 0x19, 0xb2, 0x46,
@ -117,7 +120,9 @@ uint32_t test_1_and_2(void)
sizeof(plaintext) + TC_AES_BLOCK_SIZE,
plaintext, sizeof(plaintext),
iv_buffer, &a) == 0) {
TC_ERROR("CBC test #1 (encryption SP 800-38a tests) failed in %s.\n", __func__);
TC_ERROR
("CBC test #1 (encryption SP 800-38a tests) failed in %s.\n",
__func__);
result = TC_FAIL;
goto exitTest1;
}
@ -134,7 +139,9 @@ uint32_t test_1_and_2(void)
if (tc_cbc_mode_decrypt(decrypted, length - TC_AES_BLOCK_SIZE, p,
length, encrypted, &a) == 0) {
TC_ERROR("CBC test #2 (decryption SP 800-38a tests) failed in.\n", __func__);
TC_ERROR
("CBC test #2 (decryption SP 800-38a tests) failed in.\n",
__func__);
result = TC_FAIL;
goto exitTest1;
}
@ -142,7 +149,7 @@ uint32_t test_1_and_2(void)
result = check_result(2, plaintext, sizeof(decrypted),
decrypted, sizeof(decrypted), 1);
exitTest1:
exitTest1:
TC_END_RESULT(result);
return result;
}
@ -166,8 +173,7 @@ void main(void)
TC_PRINT("All CBC tests succeeded!\n");
exitTest:
exitTest:
TC_END_RESULT(result);
TC_END_REPORT(result);
}