aboutsummaryrefslogtreecommitdiff
path: root/crypto/openssl/test/mdc2_internal_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/openssl/test/mdc2_internal_test.c')
-rw-r--r--crypto/openssl/test/mdc2_internal_test.c15
1 files changed, 5 insertions, 10 deletions
diff --git a/crypto/openssl/test/mdc2_internal_test.c b/crypto/openssl/test/mdc2_internal_test.c
index 56f464b1f3eb..0fce250004fe 100644
--- a/crypto/openssl/test/mdc2_internal_test.c
+++ b/crypto/openssl/test/mdc2_internal_test.c
@@ -27,7 +27,6 @@ typedef struct {
const unsigned char expected[MDC2_DIGEST_LENGTH];
} TESTDATA;
-
/**********************************************************************
*
* Test driver
@@ -35,13 +34,9 @@ typedef struct {
***/
static TESTDATA tests[] = {
- {
- "Now is the time for all ",
- {
- 0x42, 0xE5, 0x0C, 0xD2, 0x24, 0xBA, 0xCE, 0xBA,
- 0x76, 0x0B, 0xDD, 0x2B, 0xD4, 0x09, 0x28, 0x1A
- }
- }
+ { "Now is the time for all ",
+ { 0x42, 0xE5, 0x0C, 0xD2, 0x24, 0xBA, 0xCE, 0xBA,
+ 0x76, 0x0B, 0xDD, 0x2B, 0xD4, 0x09, 0x28, 0x1A } }
};
/**********************************************************************
@@ -58,11 +53,11 @@ static int test_mdc2(int idx)
MDC2_Init(&c);
MDC2_Update(&c, (const unsigned char *)testdata.input,
- strlen(testdata.input));
+ strlen(testdata.input));
MDC2_Final(&(md[0]), &c);
if (!TEST_mem_eq(testdata.expected, MDC2_DIGEST_LENGTH,
- md, MDC2_DIGEST_LENGTH)) {
+ md, MDC2_DIGEST_LENGTH)) {
TEST_info("mdc2 test %d: unexpected output", idx);
return 0;
}